Skip to content

Commit

Permalink
fix: create release branch as head (#9356)
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Krick <matt.krick@gmail.com>
  • Loading branch information
mattkrick committed Jan 18, 2024
1 parent 1b7af84 commit 5089e4c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Ironbank S3 Upload

on:
workflow_dispatch:
inputs:
version_number:
description: "Version number of the Parabol image to process"
required: true

jobs:
make-branch:
runs-on: ubuntu-latest
permissions:
contents: "write"
id-token: "write"
pull-requests: "write"
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Create release branch
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git checkout -b "release/${{ github.event.inputs.version_number }}"
git push

0 comments on commit 5089e4c

Please sign in to comment.