Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- run: echo "::remove-matcher owner=uic-problem-matcher::"

- name: Run C++ Linter (clang-tidy)
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
uses: cpp-linter/cpp-linter-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
uses: ./.github/workflows/build-windows.yml
# linux build is mainly here to check it builds. We have no acrtifact now.
call-build-linux:
permissions:
contents: read
pull-requests: write
needs: check-semver
uses: ./.github/workflows/build-linux.yml

Expand Down
Loading