Skip to content

ashishdhingra/pr-linter-exemption-labeler

 
 

Repository files navigation

Apply exemption labels on PRs so that reviewers can more easily see pull requests that need attention even if they do not have a passing build or are not passing the PR Linter validation

Usage

Configure to run on comments on open PRs that are not authored by aws-cdk-automation:

name: pr-linter-exemption-labeler
on:
  issue_comment:
    types:
      - created
      - edited
      - deleted

jobs:
  pr_commented:
    name: PR Comment
    if: ${{ (github.event.issue.pull_request) && (github.event.issue.state == 'open') }}
    runs-on: ubuntu-latest
    steps:
      - uses: TheRealAmazonKendra/pr-linter-exemption-labeler@main
        with:
          github-token: ${{ secrets.PROJEN.GITHUB_TOKEN }}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 98.4%
  • JavaScript 1.6%