diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 69f7c221..cd6afb2e 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -24,7 +24,7 @@ body: label: Version description: What version are you using? options: - - 'v3.0.0' # selfup { "regex": "v\\d[^']+", "script": "git tag --list 'v3.*' | tail -1" } + - 'v3.1.0' # selfup { "regex": "v\\d[^']+", "script": "git tag --list 'v3.*' | tail -1" } - 'v2.0.4' # selfup { "regex": "v\\d[^']+", "script": "git tag --list 'v2.*' | tail -1" } - 'v1.3.0' # selfup { "regex": "v\\d[^']+", "script": "git tag --list 'v1.*' | tail -1" } - other diff --git a/CHANGELOG.md b/CHANGELOG.md index 600ae03b..1dff46c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,10 @@ This file only records notable changes. Not synchronized with all releases and tags. - main - not yet released - - Add option to disable validations for `wait-list` and not found the checkRun + - Nothing +- v3.1.0 + - Add option to disable validations for `wait-list` and missing checkRun: [#762](https://github.com/kachick/wait-other-jobs/pull/762) + - Refine inputs validations and the messages: [#766](https://github.com/kachick/wait-other-jobs/pull/766) - v3.0.0 - Wait other jobs which defined in same workflow by default: [#754](https://github.com/kachick/wait-other-jobs/issues/754)\ You can change this behavior with new option `skip-same-workflow: 'true'` diff --git a/README.md b/README.md index 50c23692..287b28aa 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ jobs: # actions: read runs-on: ubuntu-latest steps: - - uses: kachick/wait-other-jobs@v3.0.0 + - uses: kachick/wait-other-jobs@v3.1.0 timeout-minutes: 15 # Recommended to be enabled with your appropriate value for fail-safe use ``` diff --git a/docs/examples.md b/docs/examples.md index fc5733b7..2b83abba 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -32,7 +32,7 @@ jobs: uses: dependabot/fetch-metadata@0fb21704c18a42ce5aa8d720ea4b912f5e6babef # v2.0.0 - name: Wait other jobs if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}} - uses: kachick/wait-other-jobs@v3.0.0 + uses: kachick/wait-other-jobs@v3.1.0 timeout-minutes: 10 with: skip-same-workflow: 'true' @@ -48,7 +48,7 @@ jobs: if: ${{ github.actor == 'renovate[bot]' }} steps: - name: Wait other jobs - uses: kachick/wait-other-jobs@v3.0.0 + uses: kachick/wait-other-jobs@v3.1.0 timeout-minutes: 10 with: skip-same-workflow: 'true'