-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a workflow to pull in initial config changes automatically (#157)
* Add a workflow to pull in initial config changes automatically * Automatically pull initial config updates
- Loading branch information
1 parent
24485c7
commit 4dba53c
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: "Check for updates on initial config" | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 11 * * *" | ||
|
||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
jobs: | ||
update-initial-config: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Get latest initial-config file | ||
run: | | ||
curl -s https://raw.githubusercontent.com/Chia-Network/chia-blockchain/refs/heads/latest/chia/util/initial-config.yaml -o ./pkg/config/initial-config.yml | ||
- name: Set up commit signing | ||
uses: Chia-Network/actions/commit-sign/gpg@main | ||
with: | ||
gpg_private_key: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_KEY }} | ||
passphrase: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_PASSPHRASE }} | ||
|
||
- name: "Create Pull Request" | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
base: main | ||
branch: initial-config-update | ||
commit-message: "Add updated initial config from chia-blockchain" | ||
delete-branch: true | ||
reviewers: "cmmarslender" | ||
assignees: "cmmarslender" | ||
title: "Initial Config Update" | ||
body: "Add updated initial config from chia-blockchain\n\nThis PR likely needs to be accompanied by manual config type updates" | ||
token: "${{ secrets.GITHUB_TOKEN }}" | ||
committer: "ChiaAutomation <[email protected]>" | ||
author: "ChiaAutomation <[email protected]>" |