| 123456789101112131415161718192021222324252627282930 |
- name: Commits
- on:
- push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
- concurrency:
- group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
- cancel-in-progress: true
- jobs:
- conventional-commits:
- name: Conventional Commits
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: webiny/action-conventional-commits@v1.3.0
- no-merge-commits:
- name: No Merge Commits
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- - name: Run test
- uses: NexusPHP/no-merge-commits@v2.1.0
- with:
- token: ${{ secrets.GITHUB_TOKEN }}
|