We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5030bd6 commit 3eef489Copy full SHA for 3eef489
1 file changed
.github/workflows/sync-autogen.yaml
@@ -0,0 +1,23 @@
1
+# sync-autogen detects drifts of autogenerated contents.
2
+name: sync-autogen
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
+ pull_request:
9
10
11
12
+jobs:
13
+ sync:
14
+ runs-on: ubuntu-24.04
15
+ steps:
16
+ - name: make sync
17
+ run: make sync
18
+ - name: git status # for logging
19
+ shell: bash
20
+ run: git status
21
+ - name: Validate
22
23
+ run: test -z "$(git status --porcelain)"
0 commit comments