Add merge comment to successful PRs for dependabot #3403
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: Add merge comment to successful PRs for dependabot | |
| on: | |
| workflow_run: | |
| workflows: ["Run tests"] | |
| types: | |
| - completed | |
| jobs: | |
| create_dependabot_comment: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} | |
| steps: | |
| - name: Add merge comment for dependabot PRs | |
| id: add-merge-comment | |
| uses: jo-sm/at-dependabot-merge@v1.2 | |
| with: | |
| run-id: ${{ github.event.workflow_run.id }} | |
| token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |