Skip to content

Commit 1e7bf41

Browse files
authored
Merge pull request #9 from peter-evans/test
Convert main.workflow to Actions v2 yml file
2 parents 4026c33 + c4c74a1 commit 1e7bf41

File tree

2 files changed

+19
-21
lines changed

2 files changed

+19
-21
lines changed

.github/main.workflow

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/push.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)