Fixes for EMBL beamlines at PETRA #3160
Workflow file for this run
This file contains 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
# This workflow will check pull requests for merge conflicts and | |
# automatically add (and remove) a relevant label | |
name: identify merge conflicts | |
on: | |
# So that PRs touching the same files as the push are updated | |
push: | |
# So that the `dirtyLabel` is removed if conflicts are resolved | |
pull_request_target: | |
types: [synchronize] | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label Conflicting Pull Requests | |
uses: eps1lon/actions-label-merge-conflict@72a2cf9eb9640428abbd99bc0aa6dd522073b9d3 | |
# This is tagged version v1.2.3, but do not use version tags | |
# https://julienrenaux.fr/2019/12/20/github-actions-security-risk/ | |
with: | |
dirtyLabel: "PR: merge conflicts" | |
removeOnDirtyLabel: "PR: ready to ship" | |
repoToken: ${{ secrets.GITHUB_TOKEN }} |