mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 03:38:04 +00:00
Add github workflow for auto PR labeling (#179)
Co-authored-by: Harshit Mehta <harshitm@nvidia.com>
This commit is contained in:
1
.github/labeler.yml
vendored
1
.github/labeler.yml
vendored
@@ -48,6 +48,7 @@ github-actions:
|
|||||||
- .github/ISSUE_TEMPLATE/*
|
- .github/ISSUE_TEMPLATE/*
|
||||||
- .github/labeler.yml
|
- .github/labeler.yml
|
||||||
- .github/pull_request_template
|
- .github/pull_request_template
|
||||||
|
- .github/workflow/pull-request-labeler.yaml
|
||||||
|
|
||||||
release:
|
release:
|
||||||
- .github/workflows/publish-chart.yaml
|
- .github/workflows/publish-chart.yaml
|
||||||
|
|||||||
14
.github/workflows/pull-request-labeler.yaml
vendored
Normal file
14
.github/workflows/pull-request-labeler.yaml
vendored
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
name: "Pull Request Labeler"
|
||||||
|
on:
|
||||||
|
- pull_request_target
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
triage:
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pull-requests: write
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/labeler@v4
|
||||||
|
with:
|
||||||
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
Reference in New Issue
Block a user