Skip to content

Commit

Permalink
ci: use variable for default runs-on value [skip deploy]
Browse files Browse the repository at this point in the history
  • Loading branch information
rperryng committed Dec 3, 2024
1 parent abfbc46 commit c9984d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
jobs:
check_modified_files:
name: Check modified files
runs-on: ubuntu-22.04
runs-on: ${{ vars.DEFAULT_RUNS_ON }}
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -37,7 +37,7 @@ jobs:
frontend_test:
name: Tests & Lints LLM Gateway Frontend
if: needs.check_modified_files.outputs.frontend_modified == 'true'
runs-on: ubuntu-latest
runs-on: ${{ vars.DEFAULT_RUNS_ON }}
needs:
- check_modified_files
steps:
Expand All @@ -64,7 +64,7 @@ jobs:

backend_tests:
name: Tests & Lints LLM Gateway Backend
runs-on: ubuntu-latest
runs-on: ${{ vars.DEFAULT_RUNS_ON }}
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit c9984d6

Please sign in to comment.