Skip to content

Commit d8741cf

Browse files
authored
Update workflow.yml
1 parent abc7e60 commit d8741cf

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/workflow.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
11

2+
workflow "Apply PR labels" {
3+
on = "push"
4+
resolves = "Apply labels"
5+
}
6+
7+
action "On sync" {
8+
uses = "actions/bin/filter@master"
9+
args = "action synchronize"
10+
}
11+
12+
action "Apply labels" {
13+
uses = "actions/labeller@v1.0.0"
14+
needs = "On sync"
15+
env = {LABEL_SPEC_FILE=".github/triage.yml"}
16+
secrets = ["GITHUB_TOKEN"]
17+
}

0 commit comments

Comments
 (0)