You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
413 B

  1. name: Sync multiple branches
  2. on:
  3. push:
  4. branches:
  5. - 'master'
  6. jobs:
  7. sync-branch:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@master
  11. - name: Merge master -> CloudRunButton
  12. uses: devmasx/merge-branch@v1.3.1
  13. with:
  14. type: now
  15. from_branch: master
  16. target_branch: CloudRunButton
  17. github_token: ${{ secrets.GITHUB_TOKEN }}