Skip to content

Commit

Permalink
fix(repo): Fix error when evaluating 'timeout-minutes' (#2048)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkl authored Nov 6, 2023
1 parent 7f7b4cb commit 29470a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/base-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
build:
# if: ${{ github.repository == 'clerk/javascript' }}
runs-on: ${{ vars.RUNNER_NORMAL }}
timeout-minutes: ${{ vars.TIMEOUT_MINUTES_NORMAL }}
timeout-minutes: ${{ fromJSON(vars.TIMEOUT_MINUTES_NORMAL) }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lock-threads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

jobs:
action:
timeout-minutes: ${{ vars.TIMEOUT_MINUTES_SHORT }}
timeout-minutes: ${{ fromJSON(vars.TIMEOUT_MINUTES_SHORT) }}
runs-on: ${{ vars.RUNNER_NORMAL }}
steps:
- uses: actions/stale@v8
Expand Down

0 comments on commit 29470a1

Please sign in to comment.