Skip to content

Commit

Permalink
Bump to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
jclem committed May 18, 2020
1 parent a8704b6 commit 048309c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The return value of the script will be in the step's outputs under the
"result" key.

```yaml
- uses: actions/github-script@0.9.0
- uses: actions/github-script@v1
id: set-result
with:
script: return "Hello!"
Expand All @@ -51,7 +51,7 @@ output of a github-script step. For some workflows, string encoding is preferred
`result-encoding` input:

```yaml
- uses: actions/github-script@0.9.0
- uses: actions/github-script@v1
id: my-script
with:
github-token: ${{secrets.GITHUB_TOKEN}}
Expand All @@ -77,7 +77,7 @@ jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@0.9.0
- uses: actions/github-script@v1
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand All @@ -100,7 +100,7 @@ jobs:
apply-label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@0.9.0
- uses: actions/github-script@v1
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand All @@ -121,7 +121,7 @@ jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@0.9.0
- uses: actions/github-script@v1
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
diff:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@0.9.0
- uses: actions/github-script@v1
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand All @@ -190,7 +190,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: @actions/checkout@v2
- uses: @actions/github-script@0.9.0
- uses: @actions/github-script@v1
with:
script: |
const path = require('path')
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "github-script",
"description": "A GitHub action for executing a simple script",
"version": "0.9.0",
"version": "1.0.0",
"author": "GitHub",
"license": "MIT",
"main": "dist/index.js",
Expand Down

0 comments on commit 048309c

Please sign in to comment.