Skip to content

Commit eb99fde

Browse files
authored
chore(repo): Use RUNNER_NORMAL for non-blocking workflows (clerk#1998)
* chore(repo): Use RUNNER_NORMAL for non-blocking workflows * Create flat-ants-worry.md
1 parent d55d9e1 commit eb99fde

9 files changed

Lines changed: 10 additions & 8 deletions

File tree

.changeset/flat-ants-worry.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

.github/workflows/base-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
jobs:
55
build:
66
# if: ${{ github.repository == 'clerkinc/javascript' }}
7-
runs-on: ${{ vars.RUNNER_LARGE }}
7+
runs-on: ${{ vars.RUNNER_NORMAL }}
88
steps:
99
- name: Checkout repo
1010
uses: actions/checkout@v3

.github/workflows/base-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run:
1616
continue-on-error: true
1717
timeout-minutes: 60
18-
runs-on: ${{ vars.RUNNER_LARGE }}
18+
runs-on: ${{ vars.RUNNER_NORMAL }}
1919
concurrency:
2020
group: integration-${{ github.ref }}-${{ inputs.script }}
2121
cancel-in-progress: true

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616
jobs:
1717
formatting-linting:
1818
name: Formatting, linting & changeset checks
19-
runs-on: ${{ vars.RUNNER_LARGE }}
19+
runs-on: ${{ vars.RUNNER_NORMAL }}
2020

2121
steps:
2222
- name: Checkout Repo

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
permissions:
99
contents: read
1010
pull-requests: write
11-
runs-on: ${{ vars.RUNNER_LARGE }}
11+
runs-on: ${{ vars.RUNNER_NORMAL }}
1212
steps:
1313
- uses: actions/labeler@v4
1414
with:

.github/workflows/nightly-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Notify Slack
2222
needs: integration-nextjs
2323
if: ${{ contains(needs.*.result, 'failure') }}
24-
runs-on: ${{ vars.RUNNER_LARGE }}
24+
runs-on: ${{ vars.RUNNER_NORMAL }}
2525
steps:
2626
- name: Report Status
2727
uses: ravsamhq/notify-slack-action@v1

.github/workflows/release-canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
canary-release:
1515
if: ${{ github.repository == 'clerkinc/javascript' }}
16-
runs-on: ${{ vars.RUNNER_LARGE }}
16+
runs-on: ${{ vars.RUNNER_NORMAL }}
1717
env:
1818
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
1919
TURBO_TEAM: ${{ vars.TURBO_TEAM }}

.github/workflows/release-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
release:
1515
name: Release
1616
if: ${{ github.repository == 'clerkinc/javascript' }}
17-
runs-on: ${{ vars.RUNNER_LARGE }}
17+
runs-on: ${{ vars.RUNNER_NORMAL }}
1818
permissions:
1919
contents: write
2020
id-token: write

.github/workflows/release-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
staging-release:
1515
if: ${{ github.repository == 'clerkinc/javascript' }}
16-
runs-on: ${{ vars.RUNNER_LARGE }}
16+
runs-on: ${{ vars.RUNNER_NORMAL }}
1717
env:
1818
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
1919
TURBO_TEAM: ${{ vars.TURBO_TEAM }}

0 commit comments

Comments
 (0)