Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
thehanimo committed Oct 10, 2023
2 parents 0cf5902 + 959c4e8 commit 5652588
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: thehanimo/pr-title-checker@v1.4.0
- uses: thehanimo/pr-title-checker@v1.4.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pass_on_octokit_error: false
Expand All @@ -77,7 +77,7 @@ To learn more about workflows, see [Create an example workflow.](https://docs.gi
```yaml
...
steps:
- uses: thehanimo/pr-title-checker@v1.4.0
- uses: thehanimo/pr-title-checker@v1.4.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pass_on_octokit_error: false
Expand All @@ -90,7 +90,7 @@ Note that this has to be a url pointing to a valid, raw json file. See [#28](htt
```yaml
...
steps:
- uses: thehanimo/pr-title-checker@v1.4.0
- uses: thehanimo/pr-title-checker@v1.4.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pass_on_octokit_error: false
Expand All @@ -106,7 +106,7 @@ Note that this has to be a url pointing to a valid, raw json file. See [#28](htt
```yaml
...
steps:
- uses: thehanimo/pr-title-checker@v1.4.0
- uses: thehanimo/pr-title-checker@v1.4.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pass_on_octokit_error: false
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10072,7 +10072,7 @@ const run = ({ configPath, localConfigPath, remoteConfigURL, GitHubConfigOwner,
return;
}
}
yield titleCheckFailed({ config });
yield titleCheckFailed({ config: { LABEL, CHECKS, MESSAGES } });
}
catch (error) {
core.info(error);
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ const run = async ({
}
}

await titleCheckFailed({ config });
await titleCheckFailed({ config: { LABEL, CHECKS, MESSAGES } });
} catch (error) {
core.info(error);
}
Expand Down

0 comments on commit 5652588

Please sign in to comment.