diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-08-01 14:32:30 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-08-01 14:32:30 +0200 |
commit | 6f679441bd94fd1bdcd9a85e750c5fa5aac8ec40 (patch) | |
tree | fd838fa4e52e7678518bd034a421c975fee79f55 /.github/workflows/pr-conflicts.yml | |
parent | 392dc166720f56cac55e05f7ab21accb4648da9a (diff) | |
download | vyos-build-6f679441bd94fd1bdcd9a85e750c5fa5aac8ec40.tar.gz vyos-build-6f679441bd94fd1bdcd9a85e750c5fa5aac8ec40.zip |
GitHub: add PR conflict and author assignment workflows
Diffstat (limited to '.github/workflows/pr-conflicts.yml')
-rw-r--r-- | .github/workflows/pr-conflicts.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/pr-conflicts.yml b/.github/workflows/pr-conflicts.yml new file mode 100644 index 00000000..72ff3969 --- /dev/null +++ b/.github/workflows/pr-conflicts.yml @@ -0,0 +1,18 @@ +name: "PR Conflicts checker" +on: + pull_request_target: + types: [synchronize] + +jobs: + Conflict_Check: + name: 'Check PR status: conflicts and resolution' + runs-on: ubuntu-18.04 + steps: + - name: check if PRs are dirty + uses: eps1lon/actions-label-merge-conflict@releases/2.x + with: + dirtyLabel: "state: conflict" + removeOnDirtyLabel: "state: conflict resolved" + repoToken: "${{ secrets.GITHUB_TOKEN }}" + commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request." + commentOnClean: "Conflicts have been resolved. A maintainer will review the pull request shortly." |