Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 fixes to branch creation workflow #89

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading