-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: add base test #3809
chore: add base test #3809
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,13 +55,20 @@ jobs: | |
- run: mv temp ./CHANGELOG.md | ||
- run: rm new | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5.0.2 | ||
with: | ||
base: main | ||
branch: release | ||
commit-message: 'bump: v${{ steps.get_version.outputs.NEW_VERSION }}' | ||
body: ${{ steps.get_release_note.outputs.result }} | ||
title: 'chore: bump v${{ steps.get_version.outputs.NEW_VERSION }}' | ||
draft: true | ||
milestone: 'v${{ steps.get_version.outputs.NEW_VERSION }}' | ||
# - name: Create Pull Request | ||
# uses: peter-evans/create-pull-request@v5.0.2 | ||
# with: | ||
# base: main | ||
# branch: release | ||
# commit-message: 'bump: v${{ steps.get_version.outputs.NEW_VERSION }}' | ||
# body: ${{ steps.get_release_note.outputs.result }} | ||
# title: 'chore: bump v${{ steps.get_version.outputs.NEW_VERSION }}' | ||
# draft: true | ||
# milestone: 'v${{ steps.get_version.outputs.NEW_VERSION }}' | ||
- run: | | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [actionlint] reported by reviewdog 🐶 |
||
echo '1' $GITHUB_REF | ||
echo '2' ${{ github.ref }} | ||
echo '3' ${{ github.ref_name }} | ||
echo '4' ${{ github.head_ref }} | ||
echo '5' ${{ github.base_ref }} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:1:10: Double quote to prevent globbing and word splitting [shellcheck]