branch_name

This commit is contained in:
Andrey 2024-05-30 18:05:32 -04:00
parent b07b83819e
commit 0afefe4922
1 changed files with 20 additions and 0 deletions

20
.github/workflows/create-branch.yaml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Create branch
on:
workflow_dispatch:
inputs:
branch_name:
description: 'Branch Name'
required: true
type: string
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Echo Inputs
run: |
echo ${{toJSON(inputs.branch_name)}}