Skip to content

Commit f91943b

Browse files
committed
add sync workflow
1 parent 79f1da9 commit f91943b

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Sync dev to main
2+
on:
3+
push:
4+
branches:
5+
- dev
6+
- develop
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: write
11+
12+
jobs:
13+
sync:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v5
18+
- name: Push changes
19+
uses: ad-m/github-push-action@master
20+
with:
21+
branch: main
22+
force: true

0 commit comments

Comments
 (0)