Skip to content

Commit 2bf2ccc

Browse files
committed
add workflow
0 parents  commit 2bf2ccc

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/main.workflow

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
workflow "Apply PR labels" {
2+
on = "pull_request"
3+
resolves = "Apply labels"
4+
}
5+
6+
action "On sync" {
7+
uses = "actions/bin/filter@master"
8+
args = "action synchronize"
9+
}
10+
11+
action "Apply labels" {
12+
uses = "actions/labeller@v1.0.0"
13+
needs = "On sync"
14+
env = {LABEL_SPEC_FILE=".github/triage.yml"}
15+
secrets = ["GITHUB_TOKEN"]
16+
}

0 commit comments

Comments
 (0)