diff --git a/.github/workflows/plugins-ci-mongo.yml b/.github/workflows/plugins-ci-mongo.yml index f7fdc3b..f413a34 100644 --- a/.github/workflows/plugins-ci-mongo.yml +++ b/.github/workflows/plugins-ci-mongo.yml @@ -4,17 +4,22 @@ on: workflow_call: inputs: auto-merge-exclude: - description: 'A semicolon seperated list of packages that you do not want to be auto-merged.' + description: 'A semicolon separated list of packages that you do not want to be auto-merged.' required: false default: 'fastify' type: string + fail-fast: + description: 'Set to false to disable the fail-fast strategy.' + required: false + default: true + type: boolean license-check: - description: 'Check licenses' + description: 'Check licenses.' required: false type: boolean default: false license-check-allowed-additional: - description: 'A semicolon seperated list of additional licenses to allow.' + description: 'A semicolon separated list of additional licenses to allow.' required: false type: string default: '' @@ -23,11 +28,6 @@ on: required: false default: false type: boolean - fail-fast: - description: 'Set the fail-fast strategey setting.' - required: false - default: true - type: boolean jobs: dependency-review: diff --git a/.github/workflows/plugins-ci-mysql.yml b/.github/workflows/plugins-ci-mysql.yml index e06293c..ed8600d 100644 --- a/.github/workflows/plugins-ci-mysql.yml +++ b/.github/workflows/plugins-ci-mysql.yml @@ -4,17 +4,22 @@ on: workflow_call: inputs: auto-merge-exclude: - description: 'A semicolon seperated list of packages that you do not want to be auto-merged.' + description: 'A semicolon separated list of packages that you do not want to be auto-merged.' required: false default: 'fastify' type: string + fail-fast: + description: 'Set to false to disable the fail-fast strategy.' + required: false + default: true + type: boolean license-check: description: 'Check licenses.' required: false type: boolean default: false license-check-allowed-additional: - description: 'A semicolon seperated list of additional licenses to allow.' + description: 'A semicolon separated list of additional licenses to allow.' required: false type: string default: '' @@ -23,11 +28,6 @@ on: required: false default: false type: boolean - fail-fast: - description: 'Set the fail-fast strategey setting.' - required: false - default: true - type: boolean jobs: dependency-review: diff --git a/.github/workflows/plugins-ci-postgres.yml b/.github/workflows/plugins-ci-postgres.yml index 86d82d6..e5d8753 100644 --- a/.github/workflows/plugins-ci-postgres.yml +++ b/.github/workflows/plugins-ci-postgres.yml @@ -4,17 +4,22 @@ on: workflow_call: inputs: auto-merge-exclude: - description: 'A semicolon seperated list of packages that you do not want to be auto-merged.' + description: 'A semicolon separated list of packages that you do not want to be auto-merged.' required: false default: 'fastify' type: string + fail-fast: + description: 'Set to false to disable the fail-fast strategy.' + required: false + default: true + type: boolean license-check: description: 'Check licenses.' required: false type: boolean default: false license-check-allowed-additional: - description: 'A semicolon seperated list of additional licenses to allow.' + description: 'A semicolon separated list of additional licenses to allow.' required: false type: string default: '' @@ -23,11 +28,6 @@ on: required: false default: false type: boolean - fail-fast: - description: 'Set the fail-fast strategey setting.' - required: false - default: true - type: boolean jobs: dependency-review: diff --git a/.github/workflows/plugins-ci-redis.yml b/.github/workflows/plugins-ci-redis.yml index b9828f8..477490f 100644 --- a/.github/workflows/plugins-ci-redis.yml +++ b/.github/workflows/plugins-ci-redis.yml @@ -4,17 +4,22 @@ on: workflow_call: inputs: auto-merge-exclude: - description: 'A semicolon seperated list of packages that you do not want to be auto-merged.' + description: 'A semicolon separated list of packages that you do not want to be auto-merged.' required: false default: 'fastify' type: string + fail-fast: + description: 'Set to false to disable the fail-fast strategy.' + required: false + default: true + type: boolean license-check: - description: 'Check licenses' + description: 'Check licenses.' required: false type: boolean default: false license-check-allowed-additional: - description: 'A semicolon seperated list of additional licenses to allow.' + description: 'A semicolon separated list of additional licenses to allow.' required: false type: string default: '' @@ -23,11 +28,6 @@ on: required: false default: false type: boolean - fail-fast: - description: 'Set the fail-fast strategey setting.' - required: false - default: true - type: boolean jobs: dependency-review: diff --git a/.github/workflows/plugins-ci.yml b/.github/workflows/plugins-ci.yml index b9cc538..d336bf8 100644 --- a/.github/workflows/plugins-ci.yml +++ b/.github/workflows/plugins-ci.yml @@ -4,17 +4,22 @@ on: workflow_call: inputs: auto-merge-exclude: - description: 'A semicolon seperated list of packages that you do not want to be auto-merged.' + description: 'A semicolon separated list of packages that you do not want to be auto-merged.' required: false default: 'fastify' type: string + fail-fast: + description: 'Set to false to disable the fail-fast strategy.' + required: false + default: true + type: boolean license-check: description: 'Check licenses.' required: false type: boolean default: false license-check-allowed-additional: - description: 'A semicolon seperated list of additional licenses to allow.' + description: 'A semicolon separated list of additional licenses to allow.' required: false type: string default: '' @@ -23,11 +28,6 @@ on: required: false default: false type: boolean - fail-fast: - description: 'Set the fail-fast strategey setting.' - required: false - default: true - type: boolean jobs: dependency-review: diff --git a/README.md b/README.md index 10425e1..37210a6 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ jobs: | Input Name | Required | Type | Default | Description | | ---------------------------------- | ---------- | ------- | --------- | ---------------------------------------------------------------------------------- | | `auto-merge-exclude` | false | string | `fastify` | Provide a semicolon separated list of packages that you do not want to be auto-merged. | +| `fail-fast` | false | boolean | `true` | Set to `false` to disable the fail-fast strategy. | | `license-check` | false | boolean | `false` | Set to `true` to check that a repository's production dependencies use permissive licenses: 0BSD, Apache-2.0, BSD-2-Clause, BSD-3-Clause, MIT, or ISC. | | `license-check-allowed-additional` | false | string | | Provide a semicolon separated list of SPDX-license identifiers that you want to additionally allow. | | `lint` | false | boolean | `false` | Set to `true` to run the `lint` script in a repository's `package.json`. |