We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 626c2bd commit 2227535Copy full SHA for 2227535
.github/workflows/lint.yml
@@ -4,6 +4,8 @@ on: [push, pull_request]
4
5
jobs:
6
clang-format:
7
+ # Skip building pull requests from the same repository
8
+ if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) }}
9
runs-on: ubuntu-latest
10
11
steps:
@@ -27,6 +29,8 @@ jobs:
27
29
exit 1
28
30
31
editorconfig:
32
33
34
35
36
0 commit comments