Skip to content

Commit

Permalink
feat: replace pr title validator (#526)
Browse files Browse the repository at this point in the history
Signed-off-by: Xunzhuo <[email protected]>

Co-authored-by: seeflood <[email protected]>
Co-authored-by: seeflood <[email protected]>
  • Loading branch information
3 people committed Jun 10, 2022
1 parent e9353e5 commit d19465e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 38 deletions.
34 changes: 0 additions & 34 deletions .github/pr-title-checker-config.json

This file was deleted.

20 changes: 16 additions & 4 deletions .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,20 @@ jobs:
name: "🍀 Title Validation"
runs-on: ubuntu-latest
steps:
- uses: thehanimo/[email protected]
with:
- uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pass_on_octokit_error: false
configuration_path: ".github/pr-title-checker-config.json"
with:
# If the PR contains one of these labels, the validation is skipped.
# Multiple labels can be separated by newlines.
# If you want to rerun the validation when labels change, you might want
# to use the `labeled` and `unlabeled` event triggers in your workflow.
ignoreLabels: |
dont-check-PRs-with-this-label
# For work-in-progress PRs you can typically use draft pull requests
# from GitHub. However, private repositories on the free plan don't have
# this option and therefore this action allows you to opt-in to using the
# special "[WIP]" prefix to indicate this state. This will avoid the
# validation of the PR title and the pull request checks remain pending.
# Note that a second check will be reported if this is enabled.
wip: true

0 comments on commit d19465e

Please sign in to comment.