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: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:

jobs:
dependency-review:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/needs-reproduction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ permissions:
jobs:
comment:
name: Comment on issue
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: |
!github.event.issue.pull_request &&
github.event.issue.body
github.event.issue.body &&
github.event.label.name == inputs.label

steps:
- name: Post reproduction comment
if: github.event.label.name == inputs.label
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/possible-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ permissions:
jobs:
comment:
name: Comment on issue or PR
runs-on: ubuntu-latest
if: github.event.label.name == inputs.label
runs-on: ubuntu-slim

steps:
- name: Post possible bot comment
if: github.event.label.name == inputs.label
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
permissions:
contents: write
actions: write
runs-on: ubuntu-latest
runs-on: ubuntu-slim
timeout-minutes: 10
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/triage-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:
jobs:
analyze-comment:
name: Analyze comment
runs-on: ubuntu-latest
runs-on: ubuntu-slim
# Only run for:
# - Non-bot comments
# - Issues that are either closed OR have 'needs reproduction' label
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/triage-edited.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:
jobs:
check-reproduction:
name: Check for Reproduction
runs-on: ubuntu-latest
runs-on: ubuntu-slim
# Only run for issues with 'needs reproduction' label (not bots, not PRs)
if: |
github.event.issue.user.type != 'Bot' &&
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/triage-opened.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ permissions:
jobs:
add-pending-label:
name: Add `pending-triage` label
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: |
inputs.add-pending-label &&
github.event.issue.labels.length == 0 &&
Expand All @@ -61,7 +61,7 @@ jobs:

llm-triage:
name: LLM triage
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: |
github.event.issue.user.type != 'Bot' &&
!github.event.issue.pull_request
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/triage-spam-transfer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
transfer-spam:
name: Transfer Spam Issue
runs-on: ubuntu-latest
runs-on: ubuntu-slim
# Only run when 'spam' label is added
if: github.event.label.name == 'spam'

Expand Down