Skip to content

Commit

Permalink
Bump version to v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Apr 17, 2024
1 parent a2e7af0 commit 47f7c49
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 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.1.0' # selfup { "regex": "v\\d[^']+", "script": "git tag --list 'v3.*' | tail -1" }
- 'v3.2.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
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This file only records notable changes. Not synchronized with all releases and t

- main - not yet released
- Nothing
- v3.2.0
- Add option to specify eventTypes in `wait-list`: [#771](https://github.com/kachick/wait-other-jobs/issues/771)
- 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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
# actions: read
runs-on: ubuntu-latest
steps:
- uses: kachick/wait-other-jobs@v3.1.0
- uses: kachick/wait-other-jobs@v3.2.0
timeout-minutes: 15 # Recommended to be enabled with your appropriate value for fail-safe use
```

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

0 comments on commit 47f7c49

Please sign in to comment.