Skip to content

Conversation

@tangrufus
Copy link
Member

No description provided.

Copilot AI review requested due to automatic review settings December 8, 2025 06:57
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR adds GitHub Actions linting to the existing lint workflow by introducing a new actions job that uses a reusable workflow from the typisttech/.github repository. This enhances the CI/CD pipeline by ensuring that workflow files themselves are properly linted alongside the existing PHP linting.

  • Adds a new actions job that calls the lint-actions.yml reusable workflow from typisttech/.github@v3
  • Follows the existing pattern of using reusable workflows from the typisttech/.github repository
  • The new job is positioned before the existing php job in the workflow

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +20 to +21
actions:
uses: typisttech/.github/.github/workflows/lint-actions.yml@v3
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Development

Successfully merging this pull request may close these issues.

2 participants