Dependabot Queue Maintenance #1380
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: Dependabot Queue Maintenance | |
| on: | |
| push: | |
| branches: [main] | |
| schedule: | |
| - cron: "17 */4 * * *" | |
| workflow_dispatch: | |
| permissions: {} | |
| concurrency: | |
| group: dependabot-maintenance | |
| cancel-in-progress: false | |
| jobs: | |
| refresh-queue: | |
| name: Refresh dependency queue PR branches | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Refresh queue | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| REPO: ${{ github.repository }} | |
| shell: bash | |
| run: ./scripts/ci/dependabot-maintenance.sh "$REPO" |