Update Agent Skills #89
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: Update Agent Skills | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 6 * * *" # Daily at 06:00 UTC | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.ref }}" | |
| cancel-in-progress: false | |
| permissions: {} | |
| jobs: | |
| update-agent-skills: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| uses: devantler-tech/actions/.github/workflows/update-agent-skills.yaml@84813ae61fb21741e0a6193b5c14c6941a448577 # v9.0.7 | |
| with: | |
| dir: .agents/skills | |
| # Create the update PR with a GitHub App token so it triggers this | |
| # repo's required CI (a PR opened with GITHUB_TOKEN does not), instead | |
| # of landing permanently blocked on missing required checks. | |
| use-app-token: true | |
| secrets: | |
| APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }} |