diff options
author | Robert Göhler <github@ghlr.de> | 2024-05-28 12:13:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 12:13:07 +0200 |
commit | 2be191247b2f10f1bc3ae38f8bcb565ce0af0635 (patch) | |
tree | 62bc12399b083cf5348d4d00784ab38ecfd6876f /.github/workflows/check-pr-conflicts.yml | |
parent | e5dde95b686686fa7cd843834ffe4eac67cba9bf (diff) | |
parent | 253078212d42cbc08c3956ae2a6a10fff6f8d877 (diff) | |
download | vyos-documentation-2be191247b2f10f1bc3ae38f8bcb565ce0af0635.tar.gz vyos-documentation-2be191247b2f10f1bc3ae38f8bcb565ce0af0635.zip |
Merge pull request #1464 from vyos/feature/T6410-workflows-fix
T6410: applied reusable workflows (auto-author-assign,check-pr-conflicts,lint-doc)
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 |