We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1f446a commit d565448Copy full SHA for d565448
.github/workflows/clang-format.yml
@@ -3,8 +3,15 @@ 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
+ echo '${{ toJSON(ubuntu.event) }}'
12
+
13
check:
- if: ${{ !contains(github.event.pull_request.labels.*.name, 'NoCI') }}
14
+ if: ${{ contains(github.event.pull_request.labels.*.name, 'DraftRunCI') || !github.event.pull_request.draft }}
15
runs-on: ubuntu-24.04
16
env:
17
CLANG_VERSION: 18
0 commit comments