chore(changelog): Update updates.txt #4988
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: Label Conflicts | |
| on: | |
| push: | |
| branches: [master] | |
| # pull_request_target is safe here; this workflow never checks out PR code. | |
| pull_request_target: # zizmor: ignore[dangerous-triggers] | |
| types: [synchronize] | |
| jobs: | |
| label-conflicts: | |
| runs-on: ubuntu-latest | |
| if: github.event.repository.fork == false | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Label merge conflicts | |
| uses: eps1lon/actions-label-merge-conflict@0273be72a0bbd58fcd71d0d6c02c209b50d1e5e1 # v3.1.0 | |
| with: | |
| dirtyLabel: "Status: Conflicted" | |
| repoToken: ${{ secrets.GITHUB_TOKEN }} |