Skip to content

Commit

Permalink
Merge pull request #348 from 3scale/fast-forward-workflow
Browse files Browse the repository at this point in the history
github action: fast forward workflow
  • Loading branch information
eguzki committed Jun 1, 2023
2 parents b1a99a4 + 501a52e commit 66ff467
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/fast-forward-branch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Fast-forward between branches
"on":
workflow_dispatch:
inputs:
ref:
description: 'The branch name or commit to fast-forward from'
default: 'master'
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 }}

0 comments on commit 66ff467

Please sign in to comment.