Skip to content

Commit 6dc812b

Browse files
authored
ci: update several runners (hiero-ledger#2018)
Signed-off-by: exploreriii <133720349+exploreriii@users.noreply.github.com>
1 parent 0994ad2 commit 6dc812b

25 files changed

+108
-109
lines changed

.github/workflows/archive/bot-gfi-notify-team.yml

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

1212
jobs:
1313
gfi_notify_team:
14-
runs-on: ubuntu-latest
14+
runs-on: hl-sdk-py-lin-md
1515
if: >
1616
github.event.issue.labels &&
1717
contains(

.github/workflows/archive/bot-mentor-assignment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
jobs:
1414
assign-mentor:
1515
if: contains(github.event.issue.labels.*.name, 'Good First Issue')
16-
runs-on: ubuntu-latest
16+
runs-on: hl-sdk-py-lin-md
1717
steps:
1818
- name: Harden the runner
1919
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0

.github/workflows/archive/bot-merge-conflict.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010
inputs:
1111
dry_run:
12-
description: 'Run in dry-run mode (no comments or status updates)'
12+
description: "Run in dry-run mode (no comments or status updates)"
1313
type: boolean
1414
default: true
1515

@@ -25,7 +25,7 @@ concurrency:
2525

2626
jobs:
2727
check-conflicts:
28-
runs-on: ubuntu-latest
28+
runs-on: hl-sdk-py-lin-md
2929
steps:
3030
- name: Checkout code
3131
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -47,4 +47,4 @@ jobs:
4747
const scriptPath = path.join(process.env.GITHUB_WORKSPACE, '.github/scripts/bot-merge-conflict.js')
4848
console.log(`Loading script from: ${scriptPath}`)
4949
const script = require(scriptPath)
50-
await script({github, context, core})
50+
await script({github, context, core})

.github/workflows/archive/bot-next-issue-recommendation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ concurrency:
1515

1616
jobs:
1717
recommend-next-issue:
18-
runs-on: ubuntu-latest
18+
runs-on: hl-sdk-py-lin-md
1919
if: github.event.pull_request.merged == true
20-
20+
2121
steps:
2222
- name: Harden the runner (Audit all outbound calls)
2323
uses: step-security/harden-runner@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Checkout repository
2828
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
29-
29+
3030
- name: Recommend next issue
3131
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # 8.0.0
3232
with:

.github/workflows/archive/bot-pr-draft-ready-reminder.yaml

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

1313
jobs:
1414
draft-ready-reminder:
15-
runs-on: ubuntu-latest
15+
runs-on: hl-sdk-py-lin-md
1616
concurrency:
1717
group: draft-ready-reminder-${{ github.event.pull_request.number }}
1818
cancel-in-progress: true
@@ -32,5 +32,5 @@ jobs:
3232
with:
3333
github-token: ${{ secrets.GITHUB_TOKEN }}
3434
script: |
35-
const script = require('./.github/scripts/bot-pr-draft-ready-reminder.js');
36-
await script({ github, context });
35+
const script = require('./.github/scripts/bot-pr-draft-ready-reminder.js');
36+
await script({ github, context });

.github/workflows/archive/bot-pr-linked-issue-not-assigned.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99
workflow_dispatch:
1010
inputs:
1111
pr_number:
12-
description: 'PR number to check'
12+
description: "PR number to check"
1313
required: true
1414
type: number
1515
dry_run:
16-
description: 'Dry run (only log, no comments)'
16+
description: "Dry run (only log, no comments)"
1717
required: false
1818
type: boolean
1919
default: true
@@ -25,7 +25,7 @@ permissions:
2525

2626
jobs:
2727
check-linked-issue-assignment:
28-
runs-on: ubuntu-latest
28+
runs-on: hl-sdk-py-lin-md
2929

3030
concurrency:
3131
group: bot-pr-linked-issue-not-assigned-${{ github.event.pull_request.number || github.event.inputs.pr_number }}

.github/workflows/archive/bot-pr-missing-linked-issue.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99
workflow_dispatch:
1010
inputs:
1111
pr_number:
12-
description: 'PR number to check'
12+
description: "PR number to check"
1313
required: true
1414
type: number
1515
dry_run:
16-
description: 'Dry run (only log, no comments)'
16+
description: "Dry run (only log, no comments)"
1717
required: false
1818
type: boolean
1919
default: true
@@ -25,7 +25,7 @@ permissions:
2525

2626
jobs:
2727
check-linked-issue:
28-
runs-on: ubuntu-latest
28+
runs-on: hl-sdk-py-lin-md
2929

3030
concurrency:
3131
group: bot-pr-missing-linked-issue-${{ github.event.pull_request.number || github.event.inputs.pr_number }}

.github/workflows/archive/bot-verified-commits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ concurrency:
3434

3535
jobs:
3636
verify-commits:
37-
runs-on: ubuntu-latest
37+
runs-on: hl-sdk-py-lin-md
3838

3939
# =========================================================================
4040
# CONFIGURATION - All customizable values are defined here as env vars

.github/workflows/archive/pr-check-title.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'PR Formatting'
1+
name: "PR Formatting"
22
on:
33
workflow_dispatch:
44
pull_request_target:
@@ -24,14 +24,14 @@ concurrency:
2424
jobs:
2525
title-check:
2626
name: Title Check
27-
runs-on: ubuntu-latest
27+
runs-on: hl-sdk-py-lin-md
2828
if: ${{ !github.event.pull_request.base.repo.fork }}
2929
permissions:
3030
checks: write
3131
statuses: write
3232
steps:
3333
- name: Harden the runner (Audit all outbound calls)
34-
uses: step-security/harden-runner@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1
34+
uses: step-security/harden-runner@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1
3535
with:
3636
egress-policy: audit
3737

.github/workflows/archived/bot-pr-auto-draft-on-changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515
jobs:
1616
convert-to-draft:
1717
if: ${{ github.event.review.state == 'changes_requested' }}
18-
runs-on: ubuntu-latest
18+
runs-on: hl-sdk-py-lin-md
1919

2020
steps:
2121
- name: Harden the runner (Audit all outbound calls)

0 commit comments

Comments
 (0)