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/approve-readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
# Github action job to test core java library features on
# downstream client libraries before they are released.
on:

permissions:
contents: read
pull_request:
name: auto-merge-readme
jobs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/auto-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
# Github action job to test core java library features on
# downstream client libraries before they are released.
on:

permissions:
contents: read
pull_request:
name: auto-release
jobs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
on:

permissions:
contents: read
push:
branches:
- main
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/downstream.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
on:

permissions:
contents: read
pull_request:
types: [ labeled ]
branches:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/renovate_config_check.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Renovate Bot Config Validation

permissions:
contents: read

on:
pull_request:
paths:
Expand All @@ -12,10 +15,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
persist-credentials: false

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: '20'

Expand Down
Loading