Skip to content

Commit

Permalink
adding workflow (#141)
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Li <[email protected]>

Signed-off-by: Sean Li <[email protected]>
(cherry picked from commit 0c602c9)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Jan 23, 2023
1 parent 974a862 commit 0eba3b3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/add-untriaged.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Apply 'untriaged' label during issue lifecycle

on:
issues:
types: [opened, reopened, transferred]

jobs:
apply-label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['untriaged']
})

0 comments on commit 0eba3b3

Please sign in to comment.