Skip to content

Commit 6554de0

Browse files
.github/workflows: Migrate workflows to Blacksmith runners (#831)
Co-authored-by: blacksmith-sh[bot] <157653362+blacksmith-sh[bot]@users.noreply.github.com> Co-authored-by: Graham Neubig <neubig@gmail.com>
1 parent 8d8134c commit 6554de0

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/assign-reviews.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ permissions:
2222

2323
jobs:
2424
run-task:
25-
runs-on: ubuntu-latest
25+
runs-on: blacksmith-4vcpu-ubuntu-2404
2626
env:
2727
# Configuration (modify these values as needed)
2828
AGENT_SCRIPT_URL: https://raw.githubusercontent.com/OpenHands/agent-sdk/main/examples/03_github_workflows/01_basic_action/agent_script.py

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111
jobs:
1212
dispatch:
13-
runs-on: ubuntu-latest
13+
runs-on: blacksmith-4vcpu-ubuntu-2404
1414
permissions:
1515
contents: write
1616
steps:

.github/workflows/oh-update-documentation.yml.back

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
update-docs:
11-
runs-on: ubuntu-latest
11+
runs-on: blacksmith-4vcpu-ubuntu-2404
1212
permissions:
1313
contents: write
1414
pull-requests: write

.github/workflows/pr-review-by-openhands.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
pr-review:
1616
if: github.event.label.name == 'review-this'
17-
runs-on: ubuntu-latest
17+
runs-on: blacksmith-4vcpu-ubuntu-2404
1818
env:
1919
LLM_MODEL: litellm_proxy/claude-sonnet-4-5-20250929
2020
LLM_BASE_URL: https://llm-proxy.eval.all-hands.dev

.github/workflows/pypi-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
publish:
10-
runs-on: ubuntu-latest
10+
runs-on: blacksmith-4vcpu-ubuntu-2404
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v5

.github/workflows/server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ jobs:
245245
# Run if it's a PR and the matrix job completed (even if some variants failed)
246246
if: github.event_name == 'pull_request' && always() && (needs.build-and-push-image.result == 'success' || needs.build-and-push-image.result ==
247247
'failure')
248-
runs-on: ubuntu-latest
248+
runs-on: blacksmith-4vcpu-ubuntu-2404
249249
outputs:
250250
build_summary: ${{ steps.consolidate.outputs.build_summary }}
251251
steps:

.github/workflows/todo-management.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ permissions:
4444

4545
jobs:
4646
scan-todos:
47-
runs-on: ubuntu-latest
47+
runs-on: blacksmith-4vcpu-ubuntu-2404
4848
# Only run if triggered manually or if 'automatic-todo' label was added
4949
if: >
5050
github.event_name == 'workflow_dispatch' ||
@@ -120,7 +120,7 @@ jobs:
120120
process-todos:
121121
needs: scan-todos
122122
if: needs.scan-todos.outputs.todo-count > 0
123-
runs-on: ubuntu-latest
123+
runs-on: blacksmith-4vcpu-ubuntu-2404
124124
strategy:
125125
matrix:
126126
todo: ${{ fromJson(needs.scan-todos.outputs.todos) }}
@@ -297,7 +297,7 @@ jobs:
297297
summary:
298298
needs: [scan-todos, process-todos]
299299
if: always()
300-
runs-on: ubuntu-latest
300+
runs-on: blacksmith-4vcpu-ubuntu-2404
301301
steps:
302302
- name: Generate Summary
303303
run: |

.github/workflows/weekly-typing-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
issue:
16-
runs-on: ubuntu-latest
16+
runs-on: blacksmith-4vcpu-ubuntu-2404
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v5

0 commit comments

Comments
 (0)