Skip to content

Commit

Permalink
🌱 fixes to branch creation workflow (#89)
Browse files Browse the repository at this point in the history
Signed-off-by: David Zager <[email protected]>
  • Loading branch information
djzager authored Jul 25, 2024
1 parent 5e2cf07 commit 74d2259
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/_cut-release-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ on:
branch_name:
description: 'Name of the new branch'
required: true
from:
description: 'Name of the new branch'
required: false
default: 'main'

jobs:
get-repos:
Expand All @@ -35,7 +31,6 @@ jobs:
uses: actions/checkout@v4
with:
repository: ${{ matrix.repo }}
ref: ${{ inputs.from }}
fetch-depth: 0

- name: Get Token
Expand All @@ -47,7 +42,7 @@ jobs:

- name: Create new branch
env:
GH_TOKEN: ${{ steps.get_workflow_token.outputs.token }}
GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "Branch Creator"
Expand Down

0 comments on commit 74d2259

Please sign in to comment.