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,11 +17,15 @@ 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 wait-for-all-lint job should include the new actions job in its needs list. Currently it only waits for the php job to complete. Since you're adding a new linting job, it should also be included in the dependency list to ensure all linting jobs complete before this final job runs.

Add - actions to the needs list:

wait-for-all-lint:
  needs:
    - actions
    - php

Copilot uses AI. Check for mistakes.

php:
uses: typisttech/.github/.github/workflows/lint-php.yml@v3

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