From ac228a507c089a1d6ecaab56945f779418527c9e Mon Sep 17 00:00:00 2001 From: buildplan <170122315+buildplan@users.noreply.github.com> Date: Sun, 29 Jun 2025 22:19:26 +0100 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/checksum.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/checksum.yml diff --git a/.github/workflows/checksum.yml b/.github/workflows/checksum.yml deleted file mode 100644 index 007a185..0000000 --- a/.github/workflows/checksum.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Generate SHA256 Checksum - -on: - push: - branches: [main] - -jobs: - generate-sha256: - runs-on: ubuntu-latest - steps: - - name: Checkout Repo - uses: actions/checkout@v4 - - - name: Generate SHA256 for script - run: | - sha256sum setup_harden_debian_ubuntu.sh > setup_harden_debian_ubuntu.sh.sha256 - - - name: Commit & Push SHA256 File - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add setup_harden_debian_ubuntu.sh.sha256 - git commit -m "Auto-update SHA256 checksum" - git push - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}