Skip to content

Commit 3eef489

Browse files
committed
add sync-autogen workflow
Signed-off-by: t-kikuc <tkikuchi07f@gmail.com>
1 parent 5030bd6 commit 3eef489

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches:
10+
- main
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+
shell: bash
23+
run: test -z "$(git status --porcelain)"

0 commit comments

Comments
 (0)