Skip to content

Commit 80a5e94

Browse files
committed
v0.8.0
1 parent 0cb5c91 commit 80a5e94

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

README.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ See [octokit/rest.js](https://octokit.github.io/rest.js/) for the API client
1919
documentation.
2020

2121
**Note** This action is still a bit of an experiment—the API may change in
22-
*future versions. 🙂
22+
future versions. 🙂
2323

2424
## Development
2525

@@ -42,7 +42,7 @@ jobs:
4242
comment:
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/github-script@0.6.0
45+
- uses: actions/github-script@0.8.0
4646
with:
4747
github-token: ${{secrets.GITHUB_TOKEN}}
4848
script: |
@@ -64,7 +64,7 @@ jobs:
6464
apply-label:
6565
runs-on: ubuntu-latest
6666
steps:
67-
- uses: actions/github-script@0.6.0
67+
- uses: actions/github-script@0.8.0
6868
with:
6969
github-token: ${{secrets.GITHUB_TOKEN}}
7070
script: |
@@ -85,7 +85,7 @@ jobs:
8585
welcome:
8686
runs-on: ubuntu-latest
8787
steps:
88-
- uses: actions/github-script@0.6.0
88+
- uses: actions/github-script@0.8.0
8989
with:
9090
github-token: ${{secrets.GITHUB_TOKEN}}
9191
script: |
@@ -123,14 +123,13 @@ You can use the `github` object to access the Octokit API. For
123123
instance, `github.request`
124124

125125
```yaml
126-
on:
127-
pull_request
126+
on: pull_request
128127
129128
jobs:
130129
diff:
131130
runs-on: ubuntu-latest
132131
steps:
133-
- uses: actions/github-script@0.6.0
132+
- uses: actions/github-script@0.8.0
134133
with:
135134
github-token: ${{secrets.GITHUB_TOKEN}}
136135
script: |
@@ -148,9 +147,8 @@ By default, the JSON-encoded return value of the function is set as the "result"
148147
output of a github-script step. For some workflows, string encoding is preferred. This option can be set using the
149148
`result-encoding` input:
150149

151-
152150
```yaml
153-
- uses: actions/github-script@0.6.0
151+
- uses: actions/github-script@0.8.0
154152
with:
155153
github-token: ${{secrets.GITHUB_TOKEN}}
156154
result-encoding: string

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "github-script",
33
"description": "A GitHub action for executing a simple script",
4-
"version": "0.6.0",
4+
"version": "0.8.0",
55
"author": "GitHub",
66
"dependencies": {
77
"@actions/core": "^1.2.2",

0 commit comments

Comments
 (0)