1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-06-05 05:36:36 +00:00

Merge branch 'main' into patch-1

This commit is contained in:
Y. Meyer-Norwood 2024-01-16 08:51:56 +13:00 committed by GitHub
commit d86d1a437e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
80 changed files with 14486 additions and 51061 deletions

View file

@ -1,5 +1,5 @@
name: Update Main Version
run-name: Move ${{ github.event.inputs.main_version }} to ${{ github.event.inputs.target }}
run-name: Move ${{ github.event.inputs.major_version }} to ${{ github.event.inputs.target }}
on:
workflow_dispatch:
@ -7,18 +7,20 @@ on:
target:
description: The tag or reference to use
required: true
main_version:
major_version:
type: choice
description: The main version to update
description: The major version to update
options:
- v4
- v3
- v2
jobs:
tag:
runs-on: ubuntu-latest
env:
TARGET: ${{ github.event.inputs.target }}
MAIN_VERSION: ${{ github.event.inputs.main_version }}
MAIN_VERSION: ${{ github.event.inputs.major_version }}
steps:
- uses: actions/checkout@v3
with: