This commit is contained in:
2026-04-15 22:22:56 -04:00
commit 5906f248f4
90 changed files with 6345 additions and 0 deletions

35
.github/workflows/version_change.yaml vendored Normal file
View File

@@ -0,0 +1,35 @@
name: "🗂 Version Change"
on:
workflow_dispatch:
inputs:
version:
description: "Version (no 'v' prefix)"
required: true
jobs:
create_version_pull_request:
name: "🗂 Create Version Pull Request"
runs-on: ubuntu-latest
steps:
- name: "🧾 Checkout"
uses: actions/checkout@v6
- name: "📝 Change Version"
uses: vers-one/dotnet-project-version-updater@v1.7
with:
file: "ChickenGameTest.csproj"
version: ${{ github.event.inputs.version }}
- name: "⤴️ Create Pull Request"
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: version/${{ github.event.inputs.version }}
commit-message: >
update version to ${{ github.event.inputs.version }}
title: >
"chore(project): update version to
${{ github.event.inputs.version }}"
body: >
chore(project): update the version to
${{ github.event.inputs.version }}.