-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In this release, we add a substantially more verbs. * Add "restart" and "coalesce" as allowed verbs #130 * Add more verbs scraped from another repository #131
- Loading branch information
Showing
3 changed files
with
311 additions
and
130 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 |
---|---|---|
|
@@ -66,7 +66,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check | ||
uses: mristin/[email protected].0 | ||
uses: mristin/[email protected].1 | ||
``` | ||
## Checked Events | ||
|
@@ -99,7 +99,7 @@ string in the workflow file. For example: | |
```yaml | ||
steps: | ||
- name: Check | ||
uses: mristin/[email protected].0 | ||
uses: mristin/[email protected].1 | ||
with: | ||
additional-verbs: 'chrusimusi, unit-test' | ||
``` | ||
|
@@ -111,7 +111,7 @@ as input: | |
```yaml | ||
steps: | ||
- name: Check | ||
uses: mristin/[email protected].0 | ||
uses: mristin/[email protected].1 | ||
with: | ||
path-to-additional-verbs: 'src/additional-verbs.txt' | ||
``` | ||
|
@@ -153,7 +153,7 @@ You can allow one-liner commit messages by setting the flag `allow-one-liners`: | |
```yaml | ||
steps: | ||
- name: Check | ||
uses: mristin/[email protected].0 | ||
uses: mristin/[email protected].1 | ||
with: | ||
allow-one-liners: 'true' | ||
``` | ||
|
@@ -225,7 +225,7 @@ for pull requests you can either: | |
```yaml | ||
steps: | ||
- name: Check | ||
uses: mristin/[email protected].0 | ||
uses: mristin/[email protected].1 | ||
with: | ||
validate-pull-request-commits: 'true' | ||
# Required for private repos | ||
|
@@ -246,7 +246,7 @@ jobs: | |
# Make sure this you also have this line | ||
contents: read | ||
steps: | ||
- uses: mristin/[email protected].0 | ||
- uses: mristin/[email protected].1 | ||
with: | ||
validate-pull-request-commits: 'true' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -265,7 +265,7 @@ We provide an `enforce-sign-off` flag so that you can enforce the sign-off in th | |
```yaml | ||
steps: | ||
- name: Check | ||
uses: mristin/[email protected].0 | ||
uses: mristin/[email protected].1 | ||
with: | ||
enforce-sign-off: 'true' | ||
``` | ||
|
Oops, something went wrong.