-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from ioriayane/Release/v0.15.0
Release v0.15.0
- Loading branch information
Showing
15 changed files
with
656 additions
and
421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Release Check | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
release_check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name : Check pullrequest title | ||
run: | | ||
name="${{ github.event.pull_request.title }}" | ||
pattern="$Release v[0-9]+\.[0-9]+\.[0-9]+$" | ||
if [[ $name =~ $pattern ]]; then | ||
ret=0 | ||
echo ok | ||
else | ||
ret=1 | ||
echo Please format the title of the pull request as "Release vX.Y.Z". | ||
fi | ||
exit $ret |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.