From 302ef0ab5d703d379d1ccc7e122c07b9b8d3fddb Mon Sep 17 00:00:00 2001 From: Refringe Date: Fri, 31 May 2024 20:56:00 -0400 Subject: [PATCH] Workflow Updates --- .github/workflows/larastan.yml | 2 ++ .github/workflows/pint.yml | 11 ++++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/larastan.yml b/.github/workflows/larastan.yml index f54628e..28cea5e 100644 --- a/.github/workflows/larastan.yml +++ b/.github/workflows/larastan.yml @@ -3,6 +3,8 @@ name: Larastan Static Analysis on: pull_request: push: + branches-ignore: + - 'dependabot/**' jobs: larastan: diff --git a/.github/workflows/pint.yml b/.github/workflows/pint.yml index fd87d84..79b3f75 100644 --- a/.github/workflows/pint.yml +++ b/.github/workflows/pint.yml @@ -3,6 +3,8 @@ name: Pint Code Style Fixer on: pull_request: push: + branches-ignore: + - 'dependabot/**' jobs: pint-fixer: @@ -58,11 +60,10 @@ jobs: - name: Update Dependencies with latest stable run: composer update --prefer-stable - - name: Run Laravel Pint - uses: aglipanci/laravel-pint-action@2 - with: - preset: laravel + - name: Run Pint Code Style Fixer + run: .vendor/bin/pint - uses: stefanzweifel/git-auto-commit-action@v5 with: - commit_message: Apply pint code style changes + commit_message: Pint PHP Style Fixes + skip_fetch: true