Skip to content

Commit 1fe4b6d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents cadcbf0 + a3fbe4f commit 1fe4b6d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/main.workflow

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
workflow "Create an issue" {
2+
resolves = ["Create Issue From File"]
3+
on = "push"
4+
}
5+
6+
action "Create Issue From File" {
7+
uses = "./"
8+
secrets = ["GITHUB_TOKEN"]
9+
env = {
10+
ISSUE_TITLE = "An example issue"
11+
ISSUE_CONTENT_FILEPATH = "./example-content/output.md"
12+
ISSUE_LABELS = "report, automated issue"
13+
ISSUE_ASSIGNEES = "peter-evans"
14+
}
15+
}

0 commit comments

Comments
 (0)