From 614e830517b3c11f7c078c70e5db075647f5b05a Mon Sep 17 00:00:00 2001 From: Dei Vilkinsons <6226576+vilkinsons@users.noreply.github.com> Date: Fri, 20 Jun 2025 07:27:47 +0100 Subject: [PATCH] H-4830: Set up `autofix.yml` in CI See [the docs](https://autofix.ci/setup?setup_action=install); step 1 (installing the GitHub App) has already been completed. --- .github/workflows/autofix.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/autofix.yml diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml new file mode 100644 index 00000000000..d56788ec06a --- /dev/null +++ b/.github/workflows/autofix.yml @@ -0,0 +1,18 @@ +name: autofix.ci # needed to securely identify the workflow + +on: + pull_request: + push: + branches: [ "main" ] +permissions: + contents: read + +jobs: + autofix: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + # TODO: add all code-fixing here. + + - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27