mirror of https://github.com/qTox/qTox.git
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.
14 lines
396 B
14 lines
396 B
name: Commit Format |
|
on: pull_request |
|
jobs: |
|
verify-commit-format: |
|
name: Verify Commit Format |
|
runs-on: ubuntu-18.04 |
|
env: |
|
GITHUB_CONTEXT: ${{ github.event.pull_request.commits_url }} |
|
steps: |
|
- uses: actions/checkout@v2 |
|
with: |
|
fetch-depth: 0 # so that we can see the full commit range |
|
- name: Run |
|
run: ./.ci-scripts/verify-commit-format.sh
|
|
|