-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix
make tag
and refine ci workflow (#1730)
* chore: fix `make tag` command * chore(ci): revert workflows for create pd pr
- Loading branch information
Showing
2 changed files
with
7 additions
and
14 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 |
---|---|---|
|
@@ -10,14 +10,6 @@ on: | |
description: 'PD branch, e.g. ["master", "release-7.6"]' | ||
default: '["master"]' | ||
required: true | ||
pr_author_name: | ||
description: 'PR author name' | ||
default: 'baurine' | ||
required: true | ||
pr_author_email: | ||
description: 'PR author email' | ||
default: '[email protected]' | ||
required: true | ||
|
||
jobs: | ||
pd_pr: | ||
|
@@ -53,8 +45,8 @@ jobs: | |
id: git_commit | ||
run: | | ||
git diff | ||
git config user.name ${{ github.event.inputs.pr_author_name }} | ||
git config user.email ${{ github.event.inputs.pr_author_email }} | ||
git config user.name "baurine" | ||
git config user.email "[email protected]" | ||
git add . | ||
if git status | grep -q "Changes to be committed" | ||
then | ||
|
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