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 d3ea46b commit 832a5f0Copy full SHA for 832a5f0
entrypoint.sh
@@ -1,8 +1,10 @@
1
#!/bin/bash
2
3
echo 'golangci-lint-action: start'
4
+echo " flags: ${INPUT_FLAGS}"
5
+echo " format: ${INPUT_FORMAT}"
6
-cd "${GITHUB_WORKSPACE}/${DIRECTORY}" || exit 1
7
+cd "${GITHUB_WORKSPACE}/${INPUT_DIRECTORY}" || exit 1
8
9
# shellcheck disable=SC2086
-golangci-lint run --out-format ${FORMAT} ${FLAGS}
10
+golangci-lint run --out-format ${INPUT_FORMAT} ${INPUT_FLAGS}
0 commit comments