Skip to content

Commit

Permalink
Bump to v3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Sep 11, 2024
1 parent 12de59f commit 2303eb5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BUG-REPORT.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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: |
[
Expand Down Expand Up @@ -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: |
[
Expand Down
4 changes: 2 additions & 2 deletions docs/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand Down

0 comments on commit 2303eb5

Please sign in to comment.