Skip to content

Commit

Permalink
Specify version
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonEtco authored Feb 25, 2020
1 parent c888fc1 commit 3a07eca
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name: Create an issue on push
jobs:
stuff:
steps:
- uses: JasonEtco/create-an-issue@master
- uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
Expand Down Expand Up @@ -52,8 +52,8 @@ Don't want to use `.github/ISSUE_TEMPLATE.md`? You can pass an input pointing th

```yaml
steps:
- uses: actions/checkout@master
- uses: JasonEtco/create-an-issue@master
- uses: actions/checkout@v2
- uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -66,8 +66,8 @@ Want to use Action logic to determine who to assign the issue to? You can pass a

```yaml
steps:
- uses: actions/checkout@master
- uses: JasonEtco/create-an-issue@master
- uses: actions/checkout@v2
- uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -81,7 +81,7 @@ If you need the number or URL of the issue that was created for another Action,

```yaml
steps:
- uses: JasonEtco/create-an-issue@master
- uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
id: create-issue
Expand Down

0 comments on commit 3a07eca

Please sign in to comment.