From ae53bafdbdbe4644de1e3b2ac7b1add0a70bfa28 Mon Sep 17 00:00:00 2001 From: Nix <75538775+nixietab@users.noreply.github.com> Date: Wed, 10 Sep 2025 03:53:09 -0300 Subject: [PATCH] Delete .github/workflows/Bleeding-Job.yaml --- .github/workflows/Bleeding-Job.yaml | 36 ----------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/Bleeding-Job.yaml diff --git a/.github/workflows/Bleeding-Job.yaml b/.github/workflows/Bleeding-Job.yaml deleted file mode 100644 index 4889e85..0000000 --- a/.github/workflows/Bleeding-Job.yaml +++ /dev/null @@ -1,36 +0,0 @@ -name: Bleeding Update version - -on: - push: - branches: - - main - -jobs: - update-version: - runs-on: ubuntu-latest - - steps: - - name: Check out the repository - uses: actions/checkout@v3 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.x' - - - name: Update version.json - run: | - git fetch --prune --unshallow - commit_count=$(git rev-list --count HEAD) - version=$(jq -r '.version' version.json) - jq --arg versionBleeding "$version-$commit_count" '. + {versionBleeding: $versionBleeding}' version.json > version.tmp && mv version.tmp version.json - - - name: Commit and push changes - run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git add version.json - git commit -m "Update version.json with commit count" - git push - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}