Bump debian from trixie-20250908 to trixie-20250929 #22
Workflow file for this run
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: Auto Merge Dependabot | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| branches: | |
| - "main" | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| jobs: | |
| auto-merge: | |
| name: "Auto Merge Dependabot PR" | |
| runs-on: ubuntu-latest | |
| if: github.actor == 'dependabot[bot]' | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/create-github-app-token@v2 | |
| id: generate-token | |
| with: | |
| app-id: ${{ secrets.APP_ID_APPROVE }} | |
| private-key: ${{ secrets.APP_PRIVATE_KEY_APPROVE }} | |
| - name: Enable Pull Request Automerge | |
| run: gh pr merge --squash --auto "${{ github.event.pull_request.number }}" | |
| env: | |
| GH_TOKEN: ${{ steps.generate-token.outputs.token }} | |
| - name: Auto approve | |
| run: gh pr review --approve "${{ github.event.pull_request.number }}" | |
| env: | |
| GH_TOKEN: ${{ steps.generate-token.outputs.token }} |