Skip to content
Merged
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
18 changes: 18 additions & 0 deletions .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Lint & Test

on:
pull_request:
types: [opened, synchronize, reopened]

permissions:
contents: read

jobs:
lint-test:
name: lint-test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: KooshaPari/phenotypeActions/actions/lint-test@main
Copy link

Copilot AI Mar 2, 2026

Choose a reason for hiding this comment

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

The workflow calls a third-party action pinned to the moving @main branch. This is a supply-chain risk (the action can change without review) and also differs from the repo’s other workflows which pin actions to version tags. Pin this to an immutable ref (a release tag if provided, otherwise a full commit SHA) and consider enabling Dependabot for GitHub Actions updates if you want automated bumps.

Suggested change
- uses: KooshaPari/phenotypeActions/actions/lint-test@main
- uses: KooshaPari/phenotypeActions/actions/lint-test@0123456789abcdef0123456789abcdef01234567

Copilot uses AI. Check for mistakes.
Loading