Skip to content

Commit 34eebbb

Browse files
committed
update workflows: remove redundant os input, set ubuntu-latest as default runner in pre-commit jobs
1 parent 9a6b7fc commit 34eebbb

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

.github/workflows/ci-orchestrator.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@ on:
1212
default: 'emulator-5554'
1313

1414
jobs:
15-
# Stage 1: Pre-commit checks
15+
# Stage 1: Pre-commit checks (always runs on ubuntu-latest)
1616
pre-commit:
1717
uses: ./.github/workflows/stage-pre-commit.yml
18-
with:
19-
os: ubuntu-latest
2018
secrets: inherit
2119

2220
# Stage 2: Test

.github/workflows/stage-pre-commit.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@ name: Pre-commit
22

33
on:
44
workflow_call:
5-
inputs:
6-
os:
7-
required: true
8-
type: string
95

106
jobs:
117
pre-commit:
12-
runs-on: ${{ inputs.os }}
8+
runs-on: ubuntu-latest
139
steps:
1410
- uses: actions/checkout@v5
1511
with:

0 commit comments

Comments
 (0)