We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ffa855 commit 8491048Copy full SHA for 8491048
2 files changed
Dockerfile
@@ -0,0 +1,11 @@
1
+FROM ubuntu:latest
2
+
3
+LABEL "com.github.actions.icon"="code"
4
+LABEL "com.github.actions.color"="purple"
5
+LABEL "com.github.actions.name"="Helloworld Code Review"
6
+LABEL "com.github.actions.description"="This will run Helloworld on PRs"
7
8
+COPY entrypoint.sh /entrypoint.sh
9
+RUN chmod +x /entrypoint.sh
10
11
+ENTRYPOINT ["/entrypoint.sh"]
entrypoint.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+echo "Start..."
+echo "$GITHUB_WORKSPACE"
+echo "Done"
0 commit comments