Skip to content
3 changes: 3 additions & 0 deletions .github/workflows/build-events.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
- "lambda-events/**"
- "Cargo.toml"

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ on:
- 'Cargo.toml'


permissions:
contents: read

jobs:
build-runtime:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ on:
- 'lambda-extension/**'
- 'Cargo.toml'

permissions:
contents: read

jobs:
build-runtime:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ on:
- 'lambda-http/**'
- 'Cargo.toml'

permissions:
contents: read

jobs:
build-runtime:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ on:
- 'lambda-extension/**'
- 'Cargo.toml'

permissions:
contents: read

jobs:
build-runtime:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/check-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches: [main]
pull_request:

permissions:
contents: read

jobs:
check:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/closed-issue-message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Closed Issue Message
on:
issues:
types: [closed]
permissions:
issues: write

jobs:
auto_comment:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Formatting and Linting

on: [push, pull_request]

permissions:
contents: read

jobs:
fmt:
name: Cargo fmt
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-rie.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
push:
branches: [ main ]

permissions:
contents: read

jobs:
test-rie:
runs-on: ubuntu-latest
Expand Down
Loading