diff options
| author | Vijayakumar <kumvijaya@gmail.com> | 2024-05-07 14:32:43 +0530 |
|---|---|---|
| committer | Vijayakumar <kumvijaya@gmail.com> | 2024-05-07 14:32:43 +0530 |
| commit | d327ae13f5da750e80ebc2497139b7fd94ad6a88 (patch) | |
| tree | ff92885e49f7d930a4d7f36c18630b88e7864654 /.github/workflows/pull-request-labels.yml | |
| parent | e40e9e81809c6c49cb012a01c63a3463bfa41f8e (diff) | |
| download | vyos-github-actions-d327ae13f5da750e80ebc2497139b7fd94ad6a88.tar.gz vyos-github-actions-d327ae13f5da750e80ebc2497139b7fd94ad6a88.zip | |
T6310: add PR templates
Diffstat (limited to '.github/workflows/pull-request-labels.yml')
| -rw-r--r-- | .github/workflows/pull-request-labels.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/pull-request-labels.yml b/.github/workflows/pull-request-labels.yml new file mode 100644 index 0000000..43856be --- /dev/null +++ b/.github/workflows/pull-request-labels.yml @@ -0,0 +1,20 @@ +--- +name: Add pull request labels + +on: + pull_request_target: + branches: + - current + - crux + - equuleus + - sagitta + +jobs: + add-pr-label: + name: Add PR Labels + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + steps: + - uses: actions/labeler@v5 |
