Skip to content

Commit

Permalink
Merge branch 'daeuniverse:main' into test-01
Browse files Browse the repository at this point in the history
  • Loading branch information
MarksonHon authored Jun 17, 2023
2 parents c2abb57 + 34ef827 commit 9675360
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/sync-upstream-source.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Synchronize Upstream

on:
workflow_dispatch:
inputs:
wing-head:
type: string
required: true
default: HEAD
wing-sync-message:
type: string
required: true
default: 'chore: upgrade dae-wing'

jobs:
sync-wing:
runs-on: ubuntu-latest
if: ${{ inputs.wing-head }}
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0

- name: sync wing
run: |
git checkout ${{ inputs.wing-head }}
working-directory: wing

- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: ${{ inputs.wing-sync-message }}
create_branch: true
branch: sync-wing

0 comments on commit 9675360

Please sign in to comment.