diff options
author | Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> | 2024-07-17 17:49:57 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-17 17:49:57 +0530 |
commit | 96b95a6d7fb7ff3bc62d3e9d0860ac8fea9c76b0 (patch) | |
tree | ec85a71ab8208542f03684e584ab384a6b5cfd4b /.github/workflows | |
parent | 1564005b69137830ef8168dcce2e0701f85bb92e (diff) | |
download | vyos-1x-96b95a6d7fb7ff3bc62d3e9d0860ac8fea9c76b0.tar.gz vyos-1x-96b95a6d7fb7ff3bc62d3e9d0860ac8fea9c76b0.zip |
T6590: rebase label worflow added
Diffstat (limited to '.github/workflows')
-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
|