Skip to content
Merged
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/axi-sdk-js-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ on:
- pnpm-lock.yaml
- pnpm-workspace.yaml
- .github/workflows/axi-sdk-js-ci.yml
# Negations must follow the positive patterns they narrow. release-please
# opens its release PR with GITHUB_TOKEN, which creates a pull_request run
# that can only sit in action_required. Excluding its output set means no
# run is ever created. Root package.json is deliberately not negated.
- "!packages/axi-sdk-js/CHANGELOG.md"
- "!packages/axi-sdk-js/package.json"
- "!packages/axi-sdk-js/package-lock.json"

jobs:
build-and-test:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/guard-generated-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ on:
types: [opened, synchronize, reopened]
branches:
- main
# Never create a run for a release-please PR. The job-level author exemption
# below cannot do this: it is evaluated inside a run, and a GITHUB_TOKEN PR's
# run is created in action_required and never starts.
paths-ignore:
- .release-please-manifest.json
- packages/axi-sdk-js/CHANGELOG.md
- packages/axi-sdk-js/package.json
- packages/axi-sdk-js/package-lock.json

permissions:
contents: read
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/no-mistakes-required.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ on:
types: [opened, edited, synchronize, reopened]
branches:
- main
# Never create a run for a release-please PR. The job-level author exemption
# below cannot do this: it is evaluated inside a run, and a GITHUB_TOKEN PR's
# run is created in action_required and never starts.
paths-ignore:
- .release-please-manifest.json
- packages/axi-sdk-js/CHANGELOG.md
- packages/axi-sdk-js/package.json
- packages/axi-sdk-js/package-lock.json

permissions:
contents: read
Expand Down
Loading
Loading