diff options
author | Yuriy Andamasov <yuriy@vyos.io> | 2025-05-17 10:55:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-17 10:55:12 +0200 |
commit | 5bcc6dd64ad4baba359b82794a2f49ac7f51ebec (patch) | |
tree | 69ef161854a91f3ded9228a4b78a6d91df7220d1 /.github/workflows/check-pr-conflicts.yml | |
parent | 8f072b6f193979becc27d9977eed7e97cb830f46 (diff) | |
parent | 8a69103b24ea9195f194f2cab40bbaa49a19f027 (diff) | |
download | accel-ppp-ng-current.tar.gz accel-ppp-ng-current.zip |
T7461: add reusable actions
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 0000000..1dad0b3 --- /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: accel-ppp/.github/.github/workflows/check-pr-merge-conflict.yml@current + secrets: inherit |