29 lines
976 B
YAML
29 lines
976 B
YAML
name: "Update pinned clan-core for checks"
|
|
on:
|
|
repository_dispatch:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "51 2 * * *"
|
|
jobs:
|
|
update-pinned-clan-core:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: Update clan-core for checks
|
|
run: nix run .#update-clan-core-for-checks
|
|
- name: Create pull request
|
|
env:
|
|
CI_BOT_TOKEN: ${{ secrets.CI_BOT_TOKEN }}
|
|
run: |
|
|
export GIT_AUTHOR_NAME=clan-bot GIT_AUTHOR_EMAIL=clan-bot@clan.lol GIT_COMMITTER_NAME=clan-bot GIT_COMMITTER_EMAIL=clan-bot@clan.lol
|
|
git commit -am "Update pinned clan-core for checks"
|
|
|
|
# Use shared PR creation script
|
|
export PR_BRANCH="update-clan-core-for-checks"
|
|
export PR_TITLE="Update Clan Core for Checks"
|
|
export PR_BODY="This PR updates the pinned clan-core flake input that is used for checks."
|
|
|
|
./.gitea/workflows/create-pr.sh
|