Skip to content
Draft
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
5 changes: 5 additions & 0 deletions .github/workflows/create-agent-standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
branches: [main, feature/*, release/agentic/*]
workflow_dispatch:

# Least-privilege default for GITHUB_TOKEN. This workflow only checks out code,
# builds bundles, and uploads them as workflow artifacts, so read-only is sufficient.
permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/lsp-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
pull_request:
branches: [main, dev, feature/*, release/agentic/*]

# Least-privilege default for GITHUB_TOKEN. Jobs only checkout code, run tests,
# upload artifacts, and upload coverage via an explicit token, so read-only is sufficient.
permissions:
contents: read

jobs:
test:
name: Test
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/npm-packaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
pull_request:
branches: [main, dev, feature/*, release/agentic/*]

# Least-privilege default for GITHUB_TOKEN. This workflow only checks out code and
# builds/packs npm packages, so read-only access is sufficient.
permissions:
contents: read

jobs:
build:
name: Test public NPM packages
Expand Down
Loading
Loading