diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index d912b0ce..2ad31214 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.4.0' # selfup {"extract":"v\\d[^']+","replacer":["bash","-c","git tag --list 'v3.*' | tail -1"]} + - 'v3.4.1' # selfup {"extract":"v\\d[^']+","replacer":["bash","-c","git tag --list 'v3.*' | tail -1"]} - other default: 0 validations: diff --git a/CHANGELOG.md b/CHANGELOG.md index c03af719..76c316b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ This file only records notable changes. Not synchronized with all releases and tags. - main - not yet released +- v3.4.1 + - Fix to support `.yaml` pattern for workflow path: [#930](https://github.com/kachick/wait-other-jobs/pull/930) - v3.4.0 - Add `jobMatchMode` option for both the wait and skip lists. It typically helps to use matrix: [#761](https://github.com/kachick/wait-other-jobs/issues/761) - Add `outputs.dump` diff --git a/README.md b/README.md index ab1ac2f3..d57324c8 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ jobs: # actions: read runs-on: ubuntu-24.04 steps: - - uses: kachick/wait-other-jobs@v3.4.0 + - uses: kachick/wait-other-jobs@v3.4.1 timeout-minutes: 15 # Recommended to be enabled with your appropriate value for fail-safe use ``` @@ -114,7 +114,7 @@ jobs: name: 'Changed at here' runs-on: ubuntu-24.04 steps: - - uses: kachick/wait-other-jobs@v3.4.0 + - uses: kachick/wait-other-jobs@v3.4.1 with: skip-list: | [ @@ -143,7 +143,7 @@ jobs: - ubuntu-22.04 runs-on: ${{ matrix.os }} steps: - - uses: kachick/wait-other-jobs@v3.4.0 + - uses: kachick/wait-other-jobs@v3.4.1 with: skip-list: | [ diff --git a/docs/examples.md b/docs/examples.md index 41d6791a..a00186c6 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.4.0 + uses: kachick/wait-other-jobs@v3.4.1 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.4.0 + uses: kachick/wait-other-jobs@v3.4.1 timeout-minutes: 10 with: skip-same-workflow: 'true'