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
2 changes: 2 additions & 0 deletions .github/workflows/check-pr-title.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
- edited
- synchronize

permissions: {}

jobs:
# Ensures that the PR title adheres to [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/).
conventional-commit:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
pull_request:
types: [opened, synchronize, ready_for_review, labeled, unlabeled]

permissions: {}

jobs:
claude-review-auto:
if: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/claude-pr-metadata-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ concurrency:
group: pr-metadata-${{ github.event.pull_request.number }}
cancel-in-progress: true

permissions: {}

jobs:
generate-pr-metadata:
# Skip conditions:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/monorepo-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
- synchronize
- reopened

permissions: {}

jobs:
build-and-test:
name: Lint, Build, and Test
Expand Down Expand Up @@ -41,6 +43,7 @@ jobs:
with:
submodules: "recursive"
fetch-depth: 2
persist-credentials: false

- name: 💽 Node and Caching
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/monorepo-integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
branches:
- main

permissions: {}

jobs:
monorepo-integrity:
name: Check monorepo integrity
Expand Down Expand Up @@ -36,6 +38,7 @@ jobs:
with:
fetch-depth: 2
submodules: "true"
persist-credentials: false

- name: 💽 Node and Caching
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/push-branches-from-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- main

permissions: {}

jobs:
dev-branch-push:
name: "Push to beta and alpha branches"
Expand All @@ -31,6 +33,7 @@ jobs:
with:
token: ${{ secrets.SERVICE_ACCOUNT_PAT }}
ref: main
persist-credentials: false

- name: Setup git
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
with:
submodules: "true"
fetch-depth: 2
persist-credentials: false

- name: Setup Node
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/trufflehog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
fetch-depth: 0
persist-credentials: false

- name: TruffleHog OSS
id: trufflehog
Expand Down
Loading