From 55cc53dad4b67543ac682348bfc71f641e0477fe Mon Sep 17 00:00:00 2001 From: ronnie Date: Fri, 10 Apr 2026 20:26:47 -0400 Subject: [PATCH] removed emojies --- .github/workflows/auto_release.yaml | 18 +++++++------- .github/workflows/release.yaml | 38 ++++++++++++++--------------- .github/workflows/spellcheck.yaml | 8 +++--- .github/workflows/tests.yaml | 20 +++++++-------- 4 files changed, 42 insertions(+), 42 deletions(-) diff --git a/.github/workflows/auto_release.yaml b/.github/workflows/auto_release.yaml index 8c5fb45..2bd7e06 100644 --- a/.github/workflows/auto_release.yaml +++ b/.github/workflows/auto_release.yaml @@ -14,10 +14,10 @@ # You can disable this action by setting the DISABLE_AUTO_RELEASE repository # variable to true. -name: '๐Ÿฆพ Auto-Release' +name: 'Auto-Release' on: workflow_run: - workflows: ["๐Ÿšฅ Tests"] + workflows: ["Tests"] branches: - main types: @@ -25,12 +25,12 @@ on: jobs: auto_release: - name: ๐Ÿฆพ Auto-Release + name: Auto-Release runs-on: ubuntu-latest outputs: should_release: ${{ steps.release.outputs.should_release }} steps: - - name: ๐Ÿงพ Checkout + - name: Checkout uses: actions/checkout@v6 with: # Use your GitHub Personal Access Token variable here. @@ -38,12 +38,12 @@ jobs: lfs: true submodules: 'recursive' - - name: ๐Ÿง‘โ€๐Ÿ”ฌ Check Test Results + - name: Check Test Results id: tests run: | echo "passed=${{ github.event.workflow_run.conclusion == 'success' }}" >> "$GITHUB_OUTPUT" - - name: ๐Ÿ“„ Check If Dependencies Changed + - name: Check If Dependencies Changed id: deps run: | message=$(git log -1 --pretty=%B) @@ -54,7 +54,7 @@ jobs: echo "changed=false" >> "$GITHUB_OUTPUT" fi - - name: ๐Ÿ“ Check Release Status + - name: Check Release Status id: release run: | echo "Tests passed: ${{ steps.tests.outputs.passed }}" @@ -64,10 +64,10 @@ jobs: if [[ ${{ steps.tests.outputs.passed }} == "true" && ${{ steps.deps.outputs.changed }} == "true" && $disable_auto_release != "true" ]]; then echo "should_release=true" >> "$GITHUB_OUTPUT" - echo "๐Ÿฆพ Creating a release!" + echo "Creating a release!" else echo "should_release=false" >> "$GITHUB_OUTPUT" - echo "โœ‹ Not creating a release." + echo "Not creating a release." fi trigger_release: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 313e625..b757367 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,4 +1,4 @@ -name: '๐Ÿ“ฆ Release' +name: 'Release' on: # Make a release whenever the developer wants. workflow_dispatch: @@ -26,13 +26,13 @@ on: default: "patch" jobs: release: - name: '๐Ÿ“ฆ Release' + name: 'Release' runs-on: ubuntu-latest env: DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_NOLOGO: true steps: - - name: ๐Ÿงพ Checkout + - name: Checkout uses: actions/checkout@v6 with: token: ${{ secrets.GH_BASIC }} @@ -40,17 +40,17 @@ jobs: submodules: 'recursive' fetch-depth: 0 # So we can get all tags. - - name: ๐Ÿ”Ž Read Current Project Version + - name: Read Current Project Version id: current-version uses: WyriHaximus/github-action-get-previous-tag@v2 with: fallback: "0.0.0-devbuild" - - name: ๐Ÿ–จ Print Current Version + - name: Print Current Version run: | echo "Current Version: ${{ steps.current-version.outputs.tag }}" - - name: ๐Ÿงฎ Compute Next Version + - name: Compute Next Version uses: chickensoft-games/next-godot-csproj-version@v1 id: next-version with: @@ -59,13 +59,13 @@ jobs: bump: ${{ inputs.bump }} - uses: actions/setup-dotnet@v5 - name: ๐Ÿ’ฝ Setup .NET SDK + name: Setup .NET SDK with: # Use the .NET SDK from global.json in the root of the repository. global-json-file: global.json # Write version to file so .NET will build correct version. - - name: ๐Ÿ“ Write Version to File + - name: Write Version to File uses: jacobtomlinson/gha-find-replace@v3 with: find: "0.0.0-devbuild" @@ -73,26 +73,26 @@ jobs: regex: false include: GodotHelper/GodotHelper.csproj - - name: ๐Ÿ“ฆ Build + - name: Build working-directory: GodotHelper run: dotnet build -c Release - - name: ๐Ÿ”Ž Get Package Path + - name: Get Package Path id: package-path run: | package=$(find ./GodotHelper/nupkg -name "*.nupkg") echo "package=$package" >> "$GITHUB_OUTPUT" - echo "๐Ÿ“ฆ Found package: $package" + echo "Found package: $package" - - name: โœจ Create Release - env: - GITHUB_TOKEN: ${{ secrets.GH_BASIC }} - run: | - version="${{ steps.next-version.outputs.version }}" - gh release create --title "v$version" --generate-notes "$version" \ - "${{ steps.package-path.outputs.package }}" + # - name: Create Release + # env: + # GITHUB_TOKEN: ${{ secrets.GH_BASIC }} + # run: | + # version="${{ steps.next-version.outputs.version }}" + # gh release create --title "v$version" --generate-notes "$version" \ + # "${{ steps.package-path.outputs.package }}" - - name: ๐Ÿ›œ Publish to Nuget + - name: Publish to Nuget run: | dotnet nuget push "${{ steps.package-path.outputs.package }}" \ --source "http://192.168.1.4:3000/api/packages/Ronnie/nuget/index.json" \ diff --git a/.github/workflows/spellcheck.yaml b/.github/workflows/spellcheck.yaml index 1bc099c..0ea2cce 100644 --- a/.github/workflows/spellcheck.yaml +++ b/.github/workflows/spellcheck.yaml @@ -1,11 +1,11 @@ -name: '๐Ÿง‘โ€๐Ÿซ Spellcheck' +name: 'Spellcheck' on: push: pull_request: jobs: spellcheck: - name: '๐Ÿง‘โ€๐Ÿซ Spellcheck' + name: 'Spellcheck' # Only run the workflow if it's not a PR or if it's a PR from a fork. # This prevents duplicate workflows from running on PR's that originate # from the repository itself. @@ -16,10 +16,10 @@ jobs: working-directory: '.' steps: - uses: actions/checkout@v6 - name: ๐Ÿงพ Checkout + name: Checkout - uses: streetsidesoftware/cspell-action@v8 - name: ๐Ÿ“ Check Spelling + name: Check Spelling with: config: './cspell.json' incremental_files_only: false diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 5862751..35b3de7 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -1,11 +1,11 @@ -name: ๐Ÿšฅ Tests +name: Tests on: push: pull_request: jobs: tests: - name: ๐Ÿงช Evaluate Tests on ${{ matrix.os }} + name: Evaluate Tests on ${{ matrix.os }} # Only run the workflow if it's not a PR or if it's a PR from a fork. # This prevents duplicate workflows from running on PR's that originate # from the repository itself. @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: # Put the operating systems you want to run on here. - os: [ubuntu-latest, macos-latest, windows-2025] + os: [ubuntu-latest] env: DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_NOLOGO: true @@ -25,22 +25,22 @@ jobs: # Use bash shells on all platforms. shell: bash steps: - - name: ๐Ÿงพ Checkout + - name: Checkout uses: actions/checkout@v6 with: lfs: true submodules: 'recursive' - - name: ๐Ÿ’ฝ Setup .NET SDK + - name: Setup .NET SDK uses: actions/setup-dotnet@v5 with: # Use the .NET SDK from global.json in the root of the repository. global-json-file: global.json - - name: ๐Ÿ“ฆ Restore Dependencies + - name: Restore Dependencies run: dotnet restore - - name: ๐Ÿค– Setup Godot + - name: Setup Godot uses: chickensoft-games/setup-godot@v2 with: # Version must include major, minor, and patch, and be >= 4.0.0 @@ -52,13 +52,13 @@ jobs: # renovatebot updates the Godot SDK version. version: global.json - - name: ๐Ÿง‘โ€๐Ÿ”ฌ Generate .NET Bindings + - name: Generate .NET Bindings working-directory: GodotHelper.Tests run: godot --headless --build-solutions --quit || exit 0 - - name: ๐Ÿฆบ Build Projects + - name: Build Projects run: dotnet build - - name: ๐Ÿงช Run Tests + - name: Run Tests working-directory: GodotHelper.Tests run: godot --headless --run-tests --quit-on-finish