-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
e880371
commit 74de9e3
Showing
1 changed file
with
2 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,22 +3,6 @@ on: | |
schedule: | ||
- cron: '0 16 * * *' # UTC 4pm, EST 11am, EDT 12pm | ||
workflow_dispatch: | ||
inputs: | ||
target-branch: | ||
description: 'Branch name of dsp-reusable-workflows repo to run tests on' | ||
required: true | ||
default: 'main' | ||
type: string | ||
owner-subject: | ||
description: 'Owner of billing project' | ||
required: true | ||
default: '[email protected]' | ||
type: string | ||
service-account: | ||
description: 'Email address or unique identifier of the Google Cloud service account for which to generate credentials' | ||
required: true | ||
default: '[email protected]' | ||
type: string | ||
|
||
env: | ||
BROADBOT_TOKEN: '${{ secrets.BROADBOT_GITHUB_TOKEN }}' # github token for access to kick off a job in the private repo | ||
|
@@ -75,8 +59,7 @@ jobs: | |
"run-name": "attach-billing-project-to-landing-zone-${{ env.RUN_NAME_SUFFIX }}", | ||
"bee-name": "${{ needs.params-gen.outputs.bee-name }}", | ||
"billing-project": "${{ needs.params-gen.outputs.project-name }}", | ||
"billing-project-creator": "${{ inputs.owner-subject }}", | ||
"service-account": "${{inputs.service-account}}" }' | ||
"service-account": "[email protected]" }' | ||
|
||
run-cromwell-az-e2e: | ||
needs: [params-gen, create-and-attach-billing-project-to-landing-zone-workflow] | ||
|
@@ -85,7 +68,6 @@ jobs: | |
id-token: write | ||
uses: "broadinstitute/dsp-reusable-workflows/.github/workflows/cromwell-az-e2e-test.yaml@main" | ||
with: | ||
branch: "${{ inputs.target-branch }}" | ||
bee-name: "${{ needs.params-gen.outputs.bee-name }}" | ||
billing-project-name: "${{ needs.params-gen.outputs.project-name }}" | ||
|
||
|
@@ -106,8 +88,7 @@ jobs: | |
"run-name": "delete-billing-project-v2-from-bee-${{ env.RUN_NAME_SUFFIX }}", | ||
"bee-name": "${{ needs.params-gen.outputs.bee-name }}", | ||
"billing-project": "${{ needs.params-gen.outputs.project-name }}", | ||
"billing-project-owner": "${{ inputs.owner-subject }}", | ||
"service-account": "${{ inputs.service-account }}", | ||
"service-account": "[email protected]", | ||
"silent-on-failure": "false" }' | ||
|
||
destroy-bee-workflow: | ||
|