Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ad1376e

Browse files
authoredNov 22, 2023
Create dispatch.yml (#294)
1 parent c638de9 commit ad1376e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
 

‎.github/workflows/dispatch.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Repository Dispatch
2+
3+
on:
4+
repository_dispatch:
5+
types: [ demo_event ]
6+
7+
jobs:
8+
sync:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v2
14+
15+
- name: Sync with Upstream
16+
run: |
17+
git remote add upstream https://github.com/Java-and-Script/pickple-front
18+
git fetch upstream
19+
git merge upstream/dev
20+
git push origin dev

0 commit comments

Comments
 (0)
Please sign in to comment.