File tree Expand file tree Collapse file tree 1 file changed +19
-19
lines changed
Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,16 @@ name: Clean All Generated Content
22
33on :
44 workflow_dispatch :
5- inputs :
6- confirm :
7- description : ' Type "yes" to confirm deletion of generated content'
8- required : true
9- default : " no"
10- type : choice
11- options :
12- - " no"
13- - " yes"
14-
5+ # inputs:
6+ # confirm:
7+ # description: 'Type "yes" to confirm deletion of generated content'
8+ # required: true
9+ # default: "no"
10+ # type: choice
11+ # options:
12+ # - "no"
13+ # - "yes"
14+ #
1515# Prevent concurrent content updates to avoid conflicts
1616concurrency :
1717 group : " content-branch-updates"
@@ -35,15 +35,15 @@ jobs:
3535 - name : Install dependencies
3636 run : bun install
3737
38- - name : Validate confirmation
39- run : |
40- if [ "${{ github.event.inputs.confirm }}" != "yes" ]; then
41- echo "❌ Confirmation not provided. Operation cancelled."
42- echo "To proceed, set the 'confirm' input to 'yes'"
43- exit 1
44- fi
45- echo "✅ Confirmation received. Proceeding with cleanup..."
46-
38+ # - name: Validate confirmation
39+ # run: |
40+ # if [ "${{ github.event.inputs.confirm }}" != "yes" ]; then
41+ # echo "❌ Confirmation not provided. Operation cancelled."
42+ # echo "To proceed, set the 'confirm' input to 'yes'"
43+ # exit 1
44+ # fi
45+ # echo "✅ Confirmation received. Proceeding with cleanup..."
46+ #
4747 - name : Clean generated content
4848 run : bun run clean:generated --confirm=yes
4949
You can’t perform that action at this time.
0 commit comments