mirror of
https://github.com/Dictionarry-Hub/database.git
synced 2025-12-09 23:37:04 +00:00
18 lines
369 B
YAML
18 lines
369 B
YAML
name: Sync dev with stable
|
|
on:
|
|
pull_request:
|
|
types: [closed]
|
|
branches: [stable]
|
|
|
|
jobs:
|
|
sync:
|
|
if: github.event.pull_request.merged == true
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- run: |
|
|
git checkout dev
|
|
git pull origin stable
|
|
git push origin dev |