1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2026-02-08 13:21:36 +00:00
Files
geek-cookbook/.github/workflows/on-push-master-update-leanpub-preview.yml
David Young 7402e15b80 Update
2020-06-03 13:25:09 +12:00

27 lines
543 B
YAML

name: Update leanpub branches
on:
push:
branches:
- dev
paths:
- 'manuscript/*.md'
- 'manuscript/**/*.md'
- '.github/workflows/*'
jobs:
update-leanpub:
name: update-leanpub
runs-on: ubuntu-latest
steps:
- name: Checkout charts repo
uses: actions/checkout@v2
- name: Merge to leanpub-preview branch
uses: devmasx/merge-branch@v1.1.0
with:
type: now
target_branch: 'leanpub-preview'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}