Skip to content

Commit

Permalink
Bump version to v3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Jun 7, 2024
1 parent f41122f commit 8d85313
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 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.3.0' # selfup {"extract":"v\\d[^']+","replacer":["bash","-c","git tag --list 'v3.*' | tail -1"]}
- 'v3.4.0' # selfup {"extract":"v\\d[^']+","replacer":["bash","-c","git tag --list 'v3.*' | tail -1"]}
- 'v2.0.4' # selfup {"extract":"v\\d[^']+","replacer":["bash","-c","git tag --list 'v2.*' | tail -1"]}
- 'v1.3.0' # selfup {"extract":"v\\d[^']+","replacer":["bash","-c","git tag --list 'v1.*' | tail -1"]}
- other
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
This file only records notable changes. Not synchronized with all releases and tags.

- main - not yet released
- Add `jobMatchMode` option for both wait and skip list
- Add `dump` outputs
- 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`
- v3.3.0
- Add `startupGracePeriod` option in wait-list: [#820](https://github.com/kachick/wait-other-jobs/issues/820)
- Restrict `wait-seconds-before-first-polling` if it is too short as zero or shorter than `startupGracePeriod`
Expand Down
12 changes: 7 additions & 5 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.3.0
- uses: kachick/wait-other-jobs@v3.4.0
timeout-minutes: 15 # Recommended to be enabled with your appropriate value for fail-safe use
```
Expand Down Expand Up @@ -92,8 +92,6 @@ permissions:

## outputs.<output_id>

(Since v3.4.0)

- `dump`\
A file path for collected resources which keeps fields than logged.\
This data is only provided for debugging purposes, so the schema is not defined.
Expand Down Expand Up @@ -128,8 +126,12 @@ jobs:
timeout-minutes: 15
```

Similar problems should be considered in matrix use.\
Since v3.4.0, you can set `prefix` for `jobMatchMode` to make small list.
Similar problems should be considered in matrix use. Because of GitHub does not provide the context.

- https://github.com/orgs/community/discussions/8945
- https://github.com/orgs/community/discussions/16614

However you can set `prefix` for `jobMatchMode` to create small skip-list to avoid this problem.

```yaml
jobs:
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.3.0
uses: kachick/wait-other-jobs@v3.4.0
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.3.0
uses: kachick/wait-other-jobs@v3.4.0
timeout-minutes: 10
with:
skip-same-workflow: 'true'
Expand Down

0 comments on commit 8d85313

Please sign in to comment.