snowflake/.woodpecker/flake-lock-update.yml

44 lines
1.1 KiB
YAML
Raw Normal View History

2024-01-23 17:51:46 -05:00
clone:
git:
image: woodpeckerci/plugin-git
settings:
branch: flake-lock-update
2024-01-23 17:42:31 -05:00
when:
- event: cron
cron: flake-lock-update
2024-01-23 16:29:31 -05:00
steps:
update:
image: nixos/nix
commands:
- echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf
- nix flake update
2024-01-23 18:01:23 -05:00
push-changes:
image: appleboy/drone-git-push
settings:
branch: flake-lock-update
ssh_key:
from_secret: forgejo_ssh_key
commit: true
commit_message: "flake.lock: update"
author_name: "WoodpeckerCI"
author_email: "woodpecker@flake.sh"
2024-01-23 16:29:31 -05:00
make-pr:
image: johnwalkerx/gitea-pull-request-create-plugin:latest
pull: true
settings:
gitea_address: https://git.flake.sh/
gitea_token:
from_secret: forgejo_token
owner: ${CI_REPO_OWNER}
repo: ${CI_REPO_NAME}
2024-01-23 16:47:40 -05:00
branch: flake-lock-update
2024-01-23 16:29:31 -05:00
base_branch: main
2024-01-23 16:50:08 -05:00
pr_title: "flake.lock: update"
2024-01-23 16:29:31 -05:00
pr_body: PR automatically created by Woodpecker CI
2024-01-23 18:01:23 -05:00
skip_on_missing_branch: true
2024-01-23 16:29:31 -05:00
close_pr_if_empty: true
delete_branch_if_pr_empty: true
merge_when_checks_succeed: false
delete_branch_after_merge: true