Skip to content

Commit

Permalink
fix: init inspection status
Browse files Browse the repository at this point in the history
  • Loading branch information
xrkffgg committed May 17, 2021
1 parent ab8bac2 commit b0710c5
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.2.1

`2021.05.17`

- fix: init inspection status.

## v1.2.0

`2021.05.16`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: verify-version
uses: actions-cool/verify-files-modify@v1.2.0
uses: actions-cool/verify-files-modify@v1.2.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
forbid-files: 'action.yml, LICENSE'
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7358,7 +7358,7 @@ async function run() {
return out;
}

let result = true;
let result = false;

if (skipVerifyAuthority) {
result = await checkAuthority();
Expand Down
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async function run() {
return out;
}

let result = true;
let result = false;

if (skipVerifyAuthority) {
result = await checkAuthority();
Expand Down

0 comments on commit b0710c5

Please sign in to comment.