Skip to content

Commit

Permalink
rename script files
Browse files Browse the repository at this point in the history
Signed-off-by: Sumu <[email protected]>
  • Loading branch information
sumupitchayan committed Oct 19, 2023
1 parent 31337ef commit 792a309
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 43 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump-latest-cdk8s-plus-library.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/k8s-automation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class K8sVersionUpgradeAutomation extends Component {
{
name: 'Set testingMode environment variable',
id: 'set-testing-mode-var',
run: 'bash src/testModeSet.sh ${{ github.event.inputs.testingMode }}',
run: 'bash src/testModeScript.sh ${{ github.event.inputs.testingMode }}',
},
{
name: 'Set auto-approve label for PR',
Expand Down
2 changes: 1 addition & 1 deletion src/testModeSet.sh → src/setLabelsScript.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

TESTING_MODE_INPUT="$1"
echo testingMode=${TESTING_MODE_INPUT:-"true"} >> $GITHUB_OUTPUT
echo testingMode=${TESTING_MODE_INPUT:-"true"} >> $GITHUB_OUTPUT
4 changes: 4 additions & 0 deletions src/testModeScript.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

TESTING_MODE_INPUT="$1"
echo testingMode=${TESTING_MODE_INPUT:-"true"} >> $GITHUB_OUTPUT
40 changes: 0 additions & 40 deletions src/testingModeScript.sh

This file was deleted.

0 comments on commit 792a309

Please sign in to comment.