Skip to content

Commit 586cc1c

Browse files
committed
chore: Make stage environment the default for the Lighthouse cron
1 parent 819f143 commit 586cc1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/lighthouse_cron.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ on:
77
environment:
88
description: 'Environment to run LHCI against'
99
required: false
10-
default: 'prod'
10+
default: 'stage'
1111
type: choice
1212
options:
1313
- stage
1414
- prod
1515
jobs:
1616
lhci:
17-
name: Lighthouse Report - ${{ inputs.environment != null && inputs.environment || 'prod' }}
17+
name: Lighthouse Report - ${{ inputs.environment != null && inputs.environment || 'stage' }}
1818
runs-on: ubuntu-latest
19-
environment: ${{ inputs.environment != null && inputs.environment || 'prod' }}
19+
environment: ${{ inputs.environment != null && inputs.environment || 'stage' }}
2020
permissions:
2121
contents: read
2222
id-token: write

0 commit comments

Comments
 (0)