From b31f8fb8968ca0640e4a3ac48e129f074ca73c7c Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Tue, 16 Jan 2024 15:50:37 -0500 Subject: [PATCH] Remove PR Fixer --- .github/workflows/pr-fixer.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/pr-fixer.yml diff --git a/.github/workflows/pr-fixer.yml b/.github/workflows/pr-fixer.yml deleted file mode 100644 index 91aab11..0000000 --- a/.github/workflows/pr-fixer.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Fix PR - -on: - pull_request: - -jobs: - lint-fix: - runs-on: ubuntu-latest - - permissions: - # Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository. - contents: write - - steps: - - uses: actions/checkout@v4 - with: - token: ${{ secrets.GH_PR_FIXER }} - ref: ${{ github.head_ref }} - - uses: wyvox/action-setup-pnpm@v3 - - ################################################### - # Commit easily fixable things back to the branch - ################################################### - - run: pnpm lint:fix - - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v5 - with: - commit_message: "Automatically run 'pnpm lint:fix'" - branch: ${{ github.head_ref }} -