We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f6e749 commit 6903e4eCopy full SHA for 6903e4e
.github/workflows/test.yml
@@ -8,4 +8,5 @@ jobs:
8
- name: Validate Plugin Version
9
uses: ./
10
with:
11
- plugin-path: '.github/workflows/fixtures/plugin-test/'
+ plugin-path: '.github/workflows/fixtures/plugin-test/'
12
+ dry-run: true
bin/validate-plugin-version.sh
@@ -62,6 +62,12 @@ main(){
62
exit 1
63
fi
64
65
+ # Bail before committing anything if we're dry-running.
66
+ if [[ "${DRY_RUN}" == "true" ]]; then
67
+ echo "Dry run enabled. Happy testing."
68
+ exit 0
69
+ fi
70
+
71
git config user.name "github-actions"
72
git config user.email "[email protected]"
73
git checkout -b "$BRANCH_NAME"
0 commit comments