Renovate Auto-merge #1034
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: Renovate Auto-merge | |
| on: | |
| workflow_run: | |
| workflows: ["Validate"] | |
| types: [completed] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| automerge: | |
| if: github.event.workflow_run.conclusion == 'success' | |
| uses: projectbluefin/actions/.github/workflows/reusable-renovate-automerge.yml@v1 | |
| with: | |
| head_sha: ${{ github.event.workflow_run.head_sha }} | |
| base_branch: testing | |
| # Merge-queue groups created by github-actions[bot] never dispatch | |
| # required checks; the app token keeps the queue from wedging. | |
| secrets: | |
| app_id: ${{ secrets.MERGERAPTOR_APP_ID }} | |
| private_key: ${{ secrets.MERGERAPTOR_PRIVATE_KEY }} |