Skip to content

Commit 74cc0ce

Browse files
committed
Add manual workflow for cleanup
1 parent 9a048f6 commit 74cc0ce

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Workflow Cleanup
2+
on:
3+
workflow_dispatch:
4+
# checkov:skip=CKV_GHA_7: "The build output cannot be affected by user parameters other than the build entry point and the top-level source location. GitHub Actions workflow_dispatch inputs MUST be empty. "
5+
inputs:
6+
ci_cloud:
7+
description: 'Select the CI_CLOUD'
8+
required: true
9+
type: choice
10+
options:
11+
- LEAFCLOUD
12+
- SMS
13+
- ARCUS
14+
cluster_name:
15+
description: 'Cluster to delete'
16+
type: string
17+
required: true
18+
19+
20+
permissions:
21+
contents: read
22+
packages: write
23+
# To report GitHub Actions status checks
24+
statuses: write
25+
26+
jobs:
27+
dummy:
28+
name: dummy-job1
29+
runs-on: ubuntu-22.04
30+
31+
steps:
32+
- name: print hellow
33+
run: |
34+
print hello
35+
shell: bash

0 commit comments

Comments
 (0)