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
3 changes: 3 additions & 0 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
paths:
- '**/gradle/wrapper/**'

permissions:
contents: read

jobs:
validation:
runs-on: ubuntu-latest
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/prepare-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Prepare release branch
on:
workflow_dispatch:

permissions:
contents: read

jobs:
prereqs:
runs-on: ubuntu-latest
Expand All @@ -21,6 +24,8 @@ jobs:
fi

create-pull-request-against-release-branch:
permissions:
contents: write # for Git to git push
runs-on: ubuntu-latest
needs:
- prereqs
Expand Down Expand Up @@ -74,6 +79,8 @@ jobs:
--base $RELEASE_BRANCH_NAME

create-pull-request-against-main:
permissions:
contents: write # for Git to git push
runs-on: ubuntu-latest
needs:
- prereqs
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/reusable-markdown-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Reusable - Markdown link check
on:
workflow_call:

permissions:
contents: read

jobs:
markdown-link-check:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/reusable-misspell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Reusable - Misspell check
on:
workflow_call:

permissions:
contents: read

jobs:
misspell-check:
runs-on: ubuntu-latest
Expand Down