Skip to content

Commit a569099

Browse files
authored
Create triage.yml
create new github action to marke new issue/pr to triage
1 parent 4e9e7e2 commit a569099

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/triage.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Add Triage for pull requests to projects
2+
3+
on:
4+
pull_request:
5+
types:
6+
- labeled
7+
- opened
8+
9+
jobs:
10+
add-to-project:
11+
name: Add issue or pr with triage tag to project
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/add-to-project@RELEASE_VERSION
15+
with:
16+
project-url: https://github.com/lambdaisland/kaocha
17+
github-token: "${{ secrets.GITHUB_TOKEN }}"
18+
labeled: Triage

0 commit comments

Comments
 (0)