We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8dd673f + 6863a15 commit 3a3b911Copy full SHA for 3a3b911
2 files changed
.github/workflows/build-linux.yml
@@ -38,7 +38,7 @@ jobs:
38
- run: echo "::remove-matcher owner=uic-problem-matcher::"
39
40
- name: Run C++ Linter (clang-tidy)
41
- if: strategy.job-index == 0 #run only for first OS of the matrix
+ if: strategy.job-index == 0 && github.event_name == 'pull_request' #run only for first OS of the matrix
42
uses: cpp-linter/cpp-linter-action@v2
43
env:
44
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/make-release.yml
@@ -32,6 +32,9 @@ jobs:
32
uses: ./.github/workflows/build-windows.yml
33
# linux build is mainly here to check it builds. We have no acrtifact now.
34
call-build-linux:
35
+ permissions:
36
+ contents: read
37
+ pull-requests: write
needs: check-semver
uses: ./.github/workflows/build-linux.yml
0 commit comments