We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97ec61b commit eea7035Copy full SHA for eea7035
.github/workflows/main.yml
@@ -29,6 +29,18 @@ jobs:
29
run: go install github.com/mgechev/revive@latest
30
- name: Run checks
31
run: make check
32
+ check-commits:
33
+ runs-on: ubuntu-latest
34
+ if: github.event_name == 'pull_request'
35
+ steps:
36
+ - uses: actions/checkout@v3
37
+ with:
38
+ fetch-depth: 0
39
+ ref: ${{ github.event.pull_request.head.sha }}
40
+ - name: Ensure branches
41
+ run: git fetch
42
+ - name: Lint git commit messages
43
+ run: make check-gitlint
44
test:
45
runs-on: ubuntu-latest
46
steps:
0 commit comments