Skip to content

Commit 63ac061

Browse files
chore: remove unused github_token input
1 parent db7012b commit 63ac061

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
- uses: actions/checkout@master
2222
- uses: flarum/action-build@2
2323
with:
24-
github_token: ${{ secrets.GITHUB_TOKEN }}
2524
build_script: build # npm run build
2625
build_typings_script: build-typings # npm run build-typings
2726
test_script: test # npm run test
@@ -37,7 +36,6 @@ Here is a full list of options available using the `with` syntax:
3736

3837
| Name | Required | Description | Example | Default |
3938
| ---------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------- | ------- |
40-
| `github_token` | Yes | Your Actions GitHub token. The example value should work for this by default. | `${{ secrets.GITHUB_TOKEN }}` | None |
4139
| `build_script` | Yes | The `package.json` script to run to build your extension JS. | `build` | `build` |
4240
| `build_typings_script` | No | If defined, runs the script of this name in `package.json` to build typings for your extension. | `build-typings` | Unset |
4341
| `format_script` | No | If defined, runs the script of this name in `package.json` to check code formatting of your extension's JS. | `format-check` | Unset |

action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ runs:
55
using: 'node20'
66
main: 'dist/index.js'
77
inputs:
8-
github_token:
9-
description: 'Token used to push built JS code to your GitHub repository (if in doubt, use "(dollar-sign){{ secrets.GITHUB_TOKEN }}")'
10-
required: true
118
build_script:
129
description: The name of the package.json script to run to build your JS code
1310
default: 'build'

0 commit comments

Comments
 (0)