generated from actions/container-action
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1fd2f0
commit db7012b
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ jobs: | |
Here is a full list of options available using the `with` syntax: | ||
|
||
| Name | Required | Description | Example | Default | | ||
|------------------------| -------- |-------------------------------------------------------------------------------------------------------------------------|-------------------------------| ------- | | ||
| ---------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------- | ------- | | ||
| `github_token` | Yes | Your Actions GitHub token. The example value should work for this by default. | `${{ secrets.GITHUB_TOKEN }}` | None | | ||
| `build_script` | Yes | The `package.json` script to run to build your extension JS. | `build` | `build` | | ||
| `build_typings_script` | No | If defined, runs the script of this name in `package.json` to build typings for your extension. | `build-typings` | Unset | | ||
|
@@ -49,8 +49,8 @@ Here is a full list of options available using the `with` syntax: | |
| `do_not_commit` | No | Set to `true` to NOT commit the built JS/Typings. Useful for validating JS source. | `false` | `false` | | ||
| `checks` | No | An array of strings, where each is a script that should be run before committing built js. | `false` | `false` | | ||
| `commit_all_dirty` | No | Set to `true` to commit all file changes, not just files in the dist JS directory. | `false` | `false` | | ||
| `git_actor__name` | No | Allows to set a different username (normally `flarum-bot`) for the actor which commits the bundles JS. | `acme-bot` | Unset | | ||
| `git_actor__email` | No | Allows to set a different email for the actor which commits the bundled JS. | `[email protected]` | Unset | | ||
| `git_actor_name` | No | Allows to set a different username (normally `flarum-bot`) for the actor which commits the bundles JS. | `acme-bot` | Unset | | ||
| `git_actor_email` | No | Allows to set a different email for the actor which commits the bundled JS. | `[email protected]` | Unset | | ||
|
||
### Assumptions | ||
|
||
|