Skip to content

Commit

Permalink
add github workflow for pr linter (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
clamoriniere committed Aug 14, 2020
1 parent bbd9de7 commit b3d5f5b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pr-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: pull request linter
on:
pull_request:
types: [opened, labeled, unlabeled, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Verify Pull Request Labels
uses: jesusvasquez333/verify-pr-label-action@v1.1.0
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
valid-labels: 'bug, enhancement, documentation'

0 comments on commit b3d5f5b

Please sign in to comment.