Skip to content

Commit

Permalink
Create merge-to-docs-branch.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AndSonder committed Jan 23, 2024
1 parent cb1cdfc commit 7a11c83
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/merge-to-docs-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Merge to Docs Branch

on:
push:
branches:
- develop

jobs:
merge-to-docs:
runs-on: ubuntu-latest

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

- name: Merge to Docs Branch
run: |
git config user.name "andsonder"
git config user.email "changlu@keter.top"
git checkout docs
git merge develop --no-edit
git push origin docs

0 comments on commit 7a11c83

Please sign in to comment.