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 4026c33 + c4c74a1 commit 1e7bf41Copy full SHA for 1e7bf41
.github/main.workflow
.github/workflows/push.yml
@@ -0,0 +1,19 @@
1
+on: push
2
+name: Create an issue
3
+jobs:
4
+ createIssueFromFile:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@master
8
+ - name: Filter test branch
9
+ uses: actions/bin/filter@master
10
+ with:
11
+ args: branch test
12
+ - name: Create Issue From File
13
+ uses: ./
14
+ env:
15
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16
+ ISSUE_TITLE: An example issue
17
+ ISSUE_CONTENT_FILEPATH: ./example-content/output.md
18
+ ISSUE_LABELS: report, automated issue
19
+ ISSUE_ASSIGNEES: peter-evans
0 commit comments