We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 819f143 commit 586cc1cCopy full SHA for 586cc1c
.github/workflows/lighthouse_cron.yml
@@ -7,16 +7,16 @@ on:
7
environment:
8
description: 'Environment to run LHCI against'
9
required: false
10
- default: 'prod'
+ default: 'stage'
11
type: choice
12
options:
13
- stage
14
- prod
15
jobs:
16
lhci:
17
- name: Lighthouse Report - ${{ inputs.environment != null && inputs.environment || 'prod' }}
+ name: Lighthouse Report - ${{ inputs.environment != null && inputs.environment || 'stage' }}
18
runs-on: ubuntu-latest
19
- environment: ${{ inputs.environment != null && inputs.environment || 'prod' }}
+ environment: ${{ inputs.environment != null && inputs.environment || 'stage' }}
20
permissions:
21
contents: read
22
id-token: write
0 commit comments