From d37f30dc7f1586e4381c677db4cfb855f85e823d Mon Sep 17 00:00:00 2001 From: amiabot Date: Wed, 11 Jun 2025 17:45:42 +0000 Subject: [PATCH] Update: created local '.github/workflows/phpstan.yml' from remote 'workflows/phpstan-default.yml' --- .github/workflows/phpstan.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/phpstan.yml diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml new file mode 100644 index 0000000..191b169 --- /dev/null +++ b/.github/workflows/phpstan.yml @@ -0,0 +1,21 @@ +# Run PHPStan and comment on the pull request with any issues. +# +# This file is managed in https://github.com/happyprime/projects +name: PHPStan (Default, PHP 8.3) + +on: pull_request + +# The GITHUB_TOKEN used by Dependabot has read-only permissions by default. We +# provide write permissions to this workflow so that comments can be left on +# the pull request. +# +# @see https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#changing-github_token-permissions +permissions: + contents: read + pull-requests: write + +jobs: + call-workflow: + uses: happyprime/workflows/.github/workflows/phpstan.yml@trunk + with: + php-version: '8.3'