diff options
author | Robert Göhler <github@ghlr.de> | 2024-05-28 12:15:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 12:15:44 +0200 |
commit | 3e5c7dbd001a649fad3e9751f637134f853daeab (patch) | |
tree | da4adba63f006b1167410a168308ca9b13a73b72 /.github/workflows/check-pr-conflicts.yml | |
parent | d2002c292af2692997073514bdb60d4371df3058 (diff) | |
parent | c9cb720aff17f636b4aee6a6c3a8552dc18dd7a2 (diff) | |
download | vyos-documentation-3e5c7dbd001a649fad3e9751f637134f853daeab.tar.gz vyos-documentation-3e5c7dbd001a649fad3e9751f637134f853daeab.zip |
Merge pull request #1466 from vyos/mergify/bp/sagitta/pr-1464
T6410: applied reusable workflows (auto-author-assign,check-pr-conflicts,lint-doc) (backport #1464)
Diffstat (limited to '.github/workflows/check-pr-conflicts.yml')
-rw-r--r-- | .github/workflows/check-pr-conflicts.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/check-pr-conflicts.yml b/.github/workflows/check-pr-conflicts.yml new file mode 100644 index 00000000..0c659e6e --- /dev/null +++ b/.github/workflows/check-pr-conflicts.yml @@ -0,0 +1,14 @@ + +name: "PR Conflicts checker" +on: + pull_request_target: + types: [synchronize] + +permissions: + pull-requests: write + contents: read + +jobs: + check-pr-conflict-call: + uses: vyos/.github/.github/workflows/check-pr-merge-conflict.yml@feature/T6349-reusable-workflows + secrets: inherit |