Skip to content

Commit

Permalink
ci: use variable for default runs-on value [skip ci] (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
rperryng authored Dec 4, 2024
1 parent 524c605 commit 8a58f39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/detection_review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
detection_review:
runs-on: ubuntu-latest
runs-on: ${{ vars.DEFAULT_RUNS_ON }}
outputs:
reveiwlist: ${{ steps.python_output.outputs.result }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
stats:
runs-on: ubuntu-latest
runs-on: ${{ vars.DEFAULT_RUNS_ON }}
steps:
- name: Run pull request stats
uses: flowwer-dev/pull-request-stats@master

0 comments on commit 8a58f39

Please sign in to comment.