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.
2 parents f417a76 + 8870955 commit b794b28Copy full SHA for b794b28
.github/workflows/static.yaml
@@ -1,7 +1,7 @@
1
name: Static Analysis
2
3
on:
4
- workflow_dispatch:
+ pull_request:
5
6
jobs:
7
clang-tidy:
@@ -11,7 +11,7 @@ jobs:
11
- name: Checkout Pull Request
12
uses: actions/checkout@v3
13
with:
14
- ref: ${{ github.event.pull_request.head.sha }}
+ fetch-depth: 2
15
- name: Setup clang-tidy
16
run: |
17
apt-get update && apt-get install -y --no-install-recommends clang-format clang-tidy
@@ -30,7 +30,7 @@ jobs:
30
clang_tidy_fixes: fixes.yml
31
# Optionally set to true if you want the Action to request
32
# changes in case warnings are found
33
- request_changes: true
+ request_changes: false
34
# Optionally set the number of comments per review
35
# to avoid GitHub API timeouts for heavily loaded
36
# pull requests
0 commit comments