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 8f347c1 commit 092c701Copy full SHA for 092c701
.github/workflows/pr-teardown.yml
@@ -19,7 +19,7 @@ jobs:
19
env:
20
APIGEE_ENVIRONMENT: internal-dev
21
BACKEND_ENVIRONMENT: dev
22
- BACKEND_SUB_ENVIRONMENT: pr-${{ github.event_name == 'pull_request' ? github.event.pull_request.number : inputs.pr_number }}
+ BACKEND_SUB_ENVIRONMENT: pr-${{ github.event_name == 'pull_request' && github.event.pull_request.number || inputs.pr_number }}
23
permissions:
24
id-token: write
25
contents: read
@@ -47,7 +47,7 @@ jobs:
47
run: |
48
make init apigee_environment=$APIGEE_ENVIRONMENT environment=$BACKEND_ENVIRONMENT sub_environment=$BACKEND_SUB_ENVIRONMENT
49
echo "ID_SYNC_QUEUE_ARN=$(make -s output name=id_sync_queue_arn)" >> $GITHUB_ENV
50
-
+
51
- name: Install poetry
52
run: pip install poetry==2.1.4
53
0 commit comments