Fast-forward between branches #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Fast-forward between branches | |
"on": | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: 'The branch name or commit to fast-forward from' | |
default: 'main' | |
type: string | |
to_branch: | |
description: 'The branch name to fast-forward to' | |
default: 'managed-services' | |
type: string | |
jobs: | |
fast-forward: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.inputs.ref }} | |
fetch-depth: 0 | |
- run: | | |
git fetch origin ${{ github.event.inputs.ref }}:${{ github.event.inputs.to_branch }} | |
git push origin ${{ github.event.inputs.to_branch }} |