We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1f446a commit f97e49fCopy full SHA for f97e49f
.github/workflows/clang-format.yml
@@ -3,8 +3,18 @@ name: clang-format
3
on: [push, pull_request]
4
5
jobs:
6
+ info:
7
+ runs-on: ubuntu-24.04
8
+ steps:
9
+ - name: info
10
+ run: |
11
+ : '${{ github.event_name }}'
12
+ : '${{ github.event.pull_request.draft }}'
13
+ : '${{ toJSON(github.event.pull_request.labels.*.name) }}'
14
+ : '${{ toJSON(github.event) }}'
15
+
16
check:
- if: ${{ !contains(github.event.pull_request.labels.*.name, 'NoCI') }}
17
+ if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft != true || contains(github.event.pull_request.labels.*.name, 'DraftRunCI') }}
18
runs-on: ubuntu-24.04
19
env:
20
CLANG_VERSION: 18
0 commit comments