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
2 changes: 2 additions & 0 deletions .github/workflows/issue-welcome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Issue Welcome (Reusable)
on:
workflow_call:

permissions: {}

jobs:
welcome:
runs-on: ubuntu-latest
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/octo-ci-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,14 @@ on:
OCTO_BOT_TOKEN:
required: true

permissions:
actions: read
permissions: {}

jobs:
notify:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
actions: read
steps:
- name: Notify Octo IM
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reusable-pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ permissions: {}
jobs:
label:
name: Label PR size and detect dependency changes
timeout-minutes: 10
permissions:
issues: write
pull-requests: write
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reusable-release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ permissions: {}
jobs:
draft:
name: Update Release Draft
timeout-minutes: 10
permissions:
contents: write
pull-requests: read
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reusable-release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ permissions: {}
jobs:
publish:
name: Publish GitHub Release (${{ inputs.tag }})
timeout-minutes: 15
permissions:
contents: write
actions: read # required to query workflow run status and head SHA
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/reusable-stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
issues: write
pull-requests: write
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
with:
Expand Down Expand Up @@ -65,6 +66,7 @@ jobs:
issues: write
pull-requests: write
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
with:
Expand Down Expand Up @@ -92,6 +94,7 @@ jobs:
issues: write
pull-requests: write
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
with:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/workflow-sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ on:
- '.github/actions/**'
workflow_dispatch:

permissions:
contents: read
permissions: {}

concurrency:
group: workflow-sanity-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -26,6 +25,9 @@ jobs:
no-tabs:
name: No tabs in workflow files
runs-on: ubuntu-24.04
timeout-minutes: 5
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down Expand Up @@ -61,6 +63,9 @@ jobs:
actionlint:
name: actionlint
runs-on: ubuntu-24.04
timeout-minutes: 10
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down
Loading