We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bf2ccc commit 51ff78bCopy full SHA for 51ff78b
.DS_Store
6 KB
.github/main.workflow
@@ -1,5 +1,5 @@
1
workflow "Apply PR labels" {
2
- on = "pull_request"
+ on = "push"
3
resolves = "Apply labels"
4
}
5
.github/main.workflow.push.workflow
@@ -0,0 +1,16 @@
+workflow "Apply PR labels" {
+ on = "pull_request"
+ resolves = "Apply labels"
+}
+
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