Skip to content

Commit

Permalink
Bump version to v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Apr 14, 2024
1 parent e2ae592 commit 2223fd0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 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.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
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'`
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.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
```
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.0.0
uses: kachick/wait-other-jobs@v3.1.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.0.0
uses: kachick/wait-other-jobs@v3.1.0
timeout-minutes: 10
with:
skip-same-workflow: 'true'
Expand Down

0 comments on commit 2223fd0

Please sign in to comment.