diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-18 10:16:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-18 10:16:40 +0200 |
commit | fae91a8d206ecc630284528ed5185aa3bce6bce1 (patch) | |
tree | 1b4debb7fbbf457ccdff2ef836862f8a542e8efd | |
parent | 918be5713ad088a304be9b9d71c701887b769fc6 (diff) | |
parent | 96b95a6d7fb7ff3bc62d3e9d0860ac8fea9c76b0 (diff) | |
download | vyos-1x-fae91a8d206ecc630284528ed5185aa3bce6bce1.tar.gz vyos-1x-fae91a8d206ecc630284528ed5185aa3bce6bce1.zip |
Merge pull request #3820 from kumvijaya/current
T6590: rebase label worflow added
-rw-r--r-- | .github/workflows/add-rebase-label.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/add-rebase-label.yml b/.github/workflows/add-rebase-label.yml new file mode 100644 index 000000000..4cf3545ba --- /dev/null +++ b/.github/workflows/add-rebase-label.yml @@ -0,0 +1,14 @@ +name: Add rebase label
+
+on:
+ pull_request_target:
+ types: [synchronize, opened, reopened, labeled, unlabeled]
+
+permissions:
+ pull-requests: write
+ contents: read
+
+jobs:
+ add-rebase-label:
+ uses: vyos/.github/.github/workflows/add-rebase-label.yml@current
+ secrets: inherit
|