Remove Priority::None, introduce RunLevel, remove duplicate code and … #1
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 Monitor" | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| conflict-monitor: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Label & Notify Conflicts | |
| uses: eps1lon/actions-label-merge-conflict@v3 | |
| with: | |
| repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
| dirtyLabel: "merge-conflict" | |
| removeOnDirtyLabel: true | |
| commentOnDirty: "New commits in main has made this PR unmergable. Please resolve the conflicts." |