Introduced SKIP_IGNORE env variable option
If the SKIP_IGNORE env var is present, the ignore_event function will not run
This commit is contained in:
parent
fcc56736a6
commit
4fb3c76ad7
|
@ -34,6 +34,7 @@ These variables are all optional. If not set, a default value will be used.
|
||||||
- `COMMIT_MESSAGE` - The message to use when committing changes.
|
- `COMMIT_MESSAGE` - The message to use when committing changes.
|
||||||
- `PULL_REQUEST_TITLE` - The title of the pull request.
|
- `PULL_REQUEST_TITLE` - The title of the pull request.
|
||||||
- `PULL_REQUEST_BODY` - The body of the pull request.
|
- `PULL_REQUEST_BODY` - The body of the pull request.
|
||||||
|
- `SKIP_IGNORE` - If present, the `ignore_event` function will not run
|
||||||
|
|
||||||
#### Branch naming
|
#### Branch naming
|
||||||
|
|
||||||
|
@ -52,7 +53,7 @@ If there are files or directories you want to ignore you can simply add them to
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
Here is an example that sets all the environment variables.
|
Here is an example that sets all the environment variables (except `SKIP_IGNORE`).
|
||||||
|
|
||||||
```yml
|
```yml
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
|
|
Loading…
Reference in a new issue