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.
2 parents cadcbf0 + a3fbe4f commit 1fe4b6dCopy full SHA for 1fe4b6d
.github/main.workflow
@@ -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