We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67f1f39 commit 2c51d75Copy full SHA for 2c51d75
github-action/Dockerfile
@@ -2,4 +2,6 @@ FROM ghcr.io/danger/danger-kotlin:1.3.0
2
3
COPY entrypoint.sh /entrypoint.sh
4
5
+RUN chmod +x /entrypoint.sh
6
+
7
ENTRYPOINT ["/entrypoint.sh"]
github-action/entrypoint.sh
@@ -10,9 +10,9 @@ args=$4
10
echo "Danger JS version:"
11
danger --version
12
echo "Danger Kotlin version:"
13
-danger-koltin --version
+danger-kotlin --version
14
15
-if [ -f "$dangerFile"]; then
+if [ -f "$dangerFile" ]; then
16
danger-kotlin $runMode --dangerfile="$dangerFile" --id="$jobId" $args
17
exit 0
18
else
0 commit comments