Skip to content

Commit

Permalink
Create dispatch.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
1eecan authored Jan 9, 2024
1 parent 1d4ad53 commit 994e7c1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Repository Dispatch

on:
repository_dispatch:
types: [ dispatch_event ]

jobs:
sync:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Sync with Upstream
run: |
git remote add upstream https://github.com/Java-and-Script/pickple-log
git fetch upstream
git merge upstream/dev
git push origin dev

0 comments on commit 994e7c1

Please sign in to comment.