Fix Group monitors to send notification after reaching maximum retires count #2214
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: Merge Conflict Labeler | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request_target: | |
| branches: | |
| - master | |
| types: [synchronize] | |
| jobs: | |
| label: | |
| name: Labeling | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository == 'louislam/uptime-kuma' }} | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Apply label | |
| uses: eps1lon/actions-label-merge-conflict@v3 | |
| with: | |
| dirtyLabel: 'needs:resolve-merge-conflict' | |
| repoToken: '${{ secrets.GITHUB_TOKEN }}' |