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
3 changes: 3 additions & 0 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ on:
merge_group:
types: [checks_requested]

permissions:
contents: read

jobs:
validate-changelog:
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
branch: 'vector'
remote-repository-name: cla-signatures
remote-organization-name: DataDog
allowlist: step-security-bot

# the followings are the optional inputs - If the optional inputs are not given, then default values will be taken
#allowlist: user1,bot*
#create-file-commit-message: 'For example: Creating file for storing CLA Signatures'
#signed-commit-message: 'For example: $contributorName has signed the CLA in $owner/$repo#$pullRequestNo'
#custom-notsigned-prcomment: 'pull request comment with Introductory message to ask new contributors to sign'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/cleanup-ghcr-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
- cron: '0 2 * * 0'
workflow_dispatch:

permissions:
contents: read

jobs:
cleanup:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/gardener_open_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
types:
- opened

permissions:
contents: read

jobs:
add-to-project:
name: Add issue to Gardener project board
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: "Pull Request Labeler"
on:
pull_request_target:

permissions:
contents: read

jobs:
label:
runs-on: ubuntu-24.04
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/master_merge_queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
types: [checks_requested]

permissions:
statuses: write
contents: read

concurrency:
# `github.ref` is unique for MQ runs and PRs
Expand Down Expand Up @@ -112,6 +112,8 @@ jobs:
secrets: inherit

master-merge-queue-check:
permissions:
statuses: write
name: Master Merge Queue Suite
# Always run this so that pull_request triggers are marked as success.
if: always()
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ env:
CI: true
PROFILE: debug

permissions:
contents: read

jobs:
check-msrv:
runs-on: ubuntu-24.04
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-homebrew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ on:
required: true
type: string

permissions:
contents: read

jobs:
publish-homebrew:
runs-on: ubuntu-24.04
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,14 @@ on:
pull_request:
types: [opened, edited, synchronize]

permissions:
contents: read

jobs:
main:
permissions:
pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR
name: Check Semantic PR
runs-on: ubuntu-24.04
steps:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ on:
- 'reopened'
- 'synchronize'

permissions:
contents: read

jobs:
spelling:
name: Check Spelling
Expand Down
Loading