Skip to content

Commit

Permalink
Merge pull request #13 from macohen/main
Browse files Browse the repository at this point in the history
Adds untriaged label workflow
  • Loading branch information
macohen committed Aug 30, 2023
2 parents 5f545b0 + 0012167 commit 9477c52
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/add-untriaged-label.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, 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 9477c52

Please sign in to comment.