diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-11-01 14:41:02 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-11-01 14:41:02 -0500 |
commit | 6637d46ea04bedc7bff80c15ca8bf29807f4a874 (patch) | |
tree | 42f4ff73548e61d4133c258aa250ac99fb7b6731 /.github | |
parent | colour (diff) | |
download | locusts-6637d46ea04bedc7bff80c15ca8bf29807f4a874.tar locusts-6637d46ea04bedc7bff80c15ca8bf29807f4a874.tar.gz locusts-6637d46ea04bedc7bff80c15ca8bf29807f4a874.tar.bz2 locusts-6637d46ea04bedc7bff80c15ca8bf29807f4a874.tar.lz locusts-6637d46ea04bedc7bff80c15ca8bf29807f4a874.tar.xz locusts-6637d46ea04bedc7bff80c15ca8bf29807f4a874.tar.zst locusts-6637d46ea04bedc7bff80c15ca8bf29807f4a874.zip |
ci: Re-enable megalinter
What could possibly go wrong?
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bd65a3a..09e2970 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -33,7 +33,7 @@ jobs: - name: Checkout Code uses: actions/checkout@v4 with: - token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 # If you use VALIDATE_ALL_CODEBASE = true, you can remove this line to improve performances # MegaLinter @@ -66,7 +66,7 @@ jobs: if: steps.ml.outputs.has_updated_sources == 1 && (env.APPLY_FIXES_EVENT == 'all' || env.APPLY_FIXES_EVENT == github.event_name) && env.APPLY_FIXES_MODE == 'pull_request' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) && !contains(github.event.head_commit.message, 'skip fix') uses: peter-evans/create-pull-request@v7 with: - token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} commit-message: "[MegaLinter] Apply linters automatic fixes" title: "[MegaLinter] Apply linters automatic fixes" labels: bot |