diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-05-18 08:10:58 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-18 05:40:58 +0300 |
commit | 807791a01f946784a7e192b0e827ec891c112a77 (patch) | |
tree | 5ed3070181b69e68b4b94a9ffceab604f99e701e /.github/workflows/check-pr-conflicts.yml | |
parent | 6b70110062190cae48770613d546ab89cb4c4de5 (diff) | |
download | vyos-1x-807791a01f946784a7e192b0e827ec891c112a77.tar.gz vyos-1x-807791a01f946784a7e192b0e827ec891c112a77.zip |
T6349: updated conflict check workflow (#3468)
* T6349: updated conflict workflow
* T6349: updated conflict workflow
* T6349: updated all workflows to use reusable workflows
* T6349: updated all workflows to use reusable workflows
Diffstat (limited to '.github/workflows/check-pr-conflicts.yml')
-rw-r--r-- | .github/workflows/check-pr-conflicts.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/check-pr-conflicts.yml b/.github/workflows/check-pr-conflicts.yml new file mode 100644 index 000000000..62a37a7fa --- /dev/null +++ b/.github/workflows/check-pr-conflicts.yml @@ -0,0 +1,13 @@ + +name: "PR Conflicts checker" +on: + pull_request_target: + types: [synchronize] + +permissions: + pull-requests: write + +jobs: + check-pr-conflict-call: + uses: vyos/.github/.github/workflows/check-pr-merge-conflict.yml@feature/T6349-reusable-workflows + secrets: inherit |