Skip to content

Commit

Permalink
fix: badge show
Browse files Browse the repository at this point in the history
  • Loading branch information
xrkffgg committed Feb 21, 2021
1 parent fdef359 commit ef0e579
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v1.1.2

`2021.02.21`

- fix: badge show.

## v1.1.1

`2021.02.19`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions-cool/[email protected].1
- uses: actions-cool/[email protected].2
with:
token: ${{ secrets.GITHUB_TOKEN }}
refuse-issue-label: 'xxx'
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6054,7 +6054,7 @@ async function run() {
if (refuseIssueLabel || needCreatorAuthority) {
core.setFailed(`[${creator}] refuse!`);
} else {
core.setFailed(`[${creator}] welcome!`);
core.info(`[${creator}] welcome!`);
}
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ async function run() {
if (refuseIssueLabel || needCreatorAuthority) {
core.setFailed(`[${creator}] refuse!`);
} else {
core.setFailed(`[${creator}] welcome!`);
core.info(`[${creator}] welcome!`);
}
}
} else {
Expand Down

0 comments on commit ef0e579

Please sign in to comment.