Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ permissions:
contents: read

jobs:
actions:
uses: typisttech/.github/.github/workflows/lint-actions.yml@v3
Comment on lines +20 to +21
Copy link

Copilot AI Dec 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new actions job should be added to the needs list in the wait-for-all-lint job (line 32-34). Currently, only php and go are listed as dependencies, but the actions lint job should also be included to ensure all linting jobs complete before the wait-for-all-lint job runs.

Copilot uses AI. Check for mistakes.

Copy link

Copilot AI Dec 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the trailing whitespace on this blank line to maintain consistency with the rest of the file.

Suggested change

Copilot uses AI. Check for mistakes.
php:
uses: typisttech/.github/.github/workflows/lint-php.yml@v3

Expand All @@ -27,6 +30,7 @@ jobs:

wait-for-all-lint:
needs:
- actions
- php
- go
runs-on: ubuntu-latest
Expand Down
Loading