You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
474 B
19 lines
474 B
name: Commisery |
|
on: |
|
pull_request: |
|
types: [edited, opened, synchronize, reopened] |
|
|
|
jobs: |
|
commit-message: |
|
name: Conventional Commit Message Checker (Commisery) |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Check-out the repo under $GITHUB_WORKSPACE |
|
uses: actions/checkout@v2 |
|
|
|
- name: Run Commisery |
|
uses: dracutdevs/commisery-action@master |
|
with: |
|
token: ${{ secrets.GITHUB_TOKEN }} |
|
pull_request: ${{ github.event.number }} |
|
|
|
|