Skip to content
Open
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions .github/workflows/ci-lib-changelog-emitter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,14 @@ jobs:
run: pnpm --filter typespec-versioning-changelog run test:coverage

- name: Audit dependencies
# Gated to PRs into `main` (and main-context workflow_call invocations) so
# advisories that live on `main` and can only be fixed there don't block
# PRs into HOLD-* batching branches or other non-main bases. The HOLD → main
# checkpoint PR re-runs this audit, so anything live at merge time is gated
# at the actionable boundary.
#
# Calls the npm bulk advisory endpoint directly as a workaround for
# pnpm audit 410 errors (pnpm/pnpm#11265). Remove this script and
# revert to `pnpm --filter typespec-versioning-changelog run audit` once pnpm ships native support.
if: github.base_ref == 'main' || github.ref == 'refs/heads/main'
run: node ${GITHUB_WORKSPACE}/.github/scripts/audit-deps.js --filter typespec-versioning-changelog
7 changes: 7 additions & 0 deletions .github/workflows/ci-lib-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,14 @@ jobs:
run: pnpm --filter @common-grants/cli run build

- name: Audit dependencies
# Gated to PRs into `main` (and main-context workflow_call invocations) so
# advisories that live on `main` and can only be fixed there don't block
# PRs into HOLD-* batching branches or other non-main bases. The HOLD → main
# checkpoint PR re-runs this audit, so anything live at merge time is gated
# at the actionable boundary.
#
# Calls the npm bulk advisory endpoint directly as a workaround for
# pnpm audit 410 errors (pnpm/pnpm#11265). Remove this script and
# revert to `pnpm --filter @common-grants/cli run audit` once pnpm ships native support.
if: github.base_ref == 'main' || github.ref == 'refs/heads/main'
run: node ${GITHUB_WORKSPACE}/.github/scripts/audit-deps.js --filter @common-grants/cli
7 changes: 7 additions & 0 deletions .github/workflows/ci-lib-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,14 @@ jobs:
run: pnpm --filter @common-grants/core run typespec

- name: Audit dependencies
# Gated to PRs into `main` (and main-context workflow_call invocations) so
# advisories that live on `main` and can only be fixed there don't block
# PRs into HOLD-* batching branches or other non-main bases. The HOLD → main
# checkpoint PR re-runs this audit, so anything live at merge time is gated
# at the actionable boundary.
#
# Calls the npm bulk advisory endpoint directly as a workaround for
# pnpm audit 410 errors (pnpm/pnpm#11265). Remove this script and
# revert to `pnpm --filter @common-grants/core run audit` once pnpm ships native support.
if: github.base_ref == 'main' || github.ref == 'refs/heads/main'
run: node ${GITHUB_WORKSPACE}/.github/scripts/audit-deps.js --filter @common-grants/core
7 changes: 7 additions & 0 deletions .github/workflows/ci-lib-ts-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,14 @@ jobs:
run: pnpm --filter @common-grants/sdk run test:coverage

- name: Audit dependencies
# Gated to PRs into `main` (and main-context workflow_call invocations) so
# advisories that live on `main` and can only be fixed there don't block
# PRs into HOLD-* batching branches or other non-main bases. The HOLD → main
# checkpoint PR re-runs this audit, so anything live at merge time is gated
# at the actionable boundary.
#
# Calls the npm bulk advisory endpoint directly as a workaround for
# pnpm audit 410 errors (pnpm/pnpm#11265). Remove this script and
# revert to `pnpm --filter @common-grants/sdk run audit` once pnpm ships native support.
if: github.base_ref == 'main' || github.ref == 'refs/heads/main'
run: node ${GITHUB_WORKSPACE}/.github/scripts/audit-deps.js --filter @common-grants/sdk
Loading