mirror of
https://github.com/bitwarden/server.git
synced 2024-12-10 15:13:29 +01:00
Add cleanup workflow with test inputs
This commit is contained in:
parent
46559c0428
commit
afc34234f9
40
.github/workflows/cleanup-ephemeral-environment.yml
vendored
Normal file
40
.github/workflows/cleanup-ephemeral-environment.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
name: Ephemeral environment cleanup
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [unlabeled]
|
||||
|
||||
jobs:
|
||||
cleanup-config:
|
||||
name: Cleanup ephemeral environment
|
||||
runs-on: ubuntu-24.04
|
||||
if: ${{ contains(github.event.pull_request.labels.*.name, 'ephemeral-environment') }}
|
||||
steps:
|
||||
- name: Log in to Azure - CI subscription
|
||||
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
||||
with:
|
||||
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
|
||||
|
||||
- name: Retrieve GitHub PAT secrets
|
||||
id: retrieve-secret-pat
|
||||
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
||||
with:
|
||||
keyvault: "bitwarden-ci"
|
||||
secrets: "github-pat-bitwarden-devops-bot-repo-scope"
|
||||
|
||||
- name: Trigger Ephemeral Environment cleanup
|
||||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
||||
with:
|
||||
github-token: ${{ steps.retrieve-secret-pat.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
|
||||
script: |
|
||||
await github.rest.actions.createWorkflowDispatch({
|
||||
owner: 'bitwarden',
|
||||
repo: 'devops',
|
||||
workflow_id: '_ephemeral_environment_pr_manager.yml',
|
||||
ref: 'BRE-291-ephemeral-pr-manager',
|
||||
inputs: {
|
||||
ephemeral_env_branch: '$GITHUB_HEAD_REF',
|
||||
cleanup_config: true,
|
||||
project: 'server'
|
||||
}
|
||||
})
|
Loading…
Reference in New Issue
Block a user