ci-update #11
This file contains hidden or 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
| name: CI Update | |
| on: | |
| repository_dispatch: | |
| types: | |
| - ci-update | |
| workflow_dispatch: | |
| concurrency: | |
| group: "ci-update-${{ github.ref }}" | |
| cancel-in-progress: false | |
| jobs: | |
| ci-update: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| # Required for creating an issue if the workflow fails | |
| issues: write | |
| # Required in this environment to allow PRs that modify .github/workflows/*. | |
| actions: write | |
| uses: athackst/ci/.github/workflows/ci_updater.yml@main | |
| with: | |
| create-pr: true | |
| automerge: true | |
| secrets: | |
| token: ${{ secrets.CI_BOT_TOKEN }} |