Skip to content

Commit

Permalink
Consolidate add-untriaged into triage workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Handalian <[email protected]>
  • Loading branch information
mch2 committed Dec 11, 2023
1 parent 5102640 commit 78bc13d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 21 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/add-untriaged.yml

This file was deleted.

8 changes: 7 additions & 1 deletion .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Auto triage based on the component label in issue

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

jobs:
apply-label:
Expand All @@ -26,3 +26,9 @@ jobs:
labels: [ `${ component_label }` ],
} );
}
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['untriaged']
})

0 comments on commit 78bc13d

Please sign in to comment.