Skip to content

ci: run supply-chain-lint only on .github/ changes; re-sync vendored lint #10

ci: run supply-chain-lint only on .github/ changes; re-sync vendored lint

ci: run supply-chain-lint only on .github/ changes; re-sync vendored lint #10

name: Linear
on:
pull_request:
branches: [ "master" ]
types: [opened, synchronize, reopened, edited]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
pull-requests: read
contents: read
jobs:
check-linear-link:
runs-on: ubuntu-latest
# Skip on draft, revert branches (for rollback speed), or dependabot PRs (no Linear ticket required)
if: |
github.event.pull_request.draft == false &&
!startsWith(github.head_ref, 'revert-') &&
github.event.pull_request.user.login != 'dependabot[bot]'
steps:
- name: Checkout (for the local action)
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Check Linear Link
uses: ./.github/actions/check-linear-link