Skip to content

Commit 8491048

Browse files
committed
Initial commit
1 parent 3ffa855 commit 8491048

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
3+
echo "Start..."
4+
echo "$GITHUB_WORKSPACE"
5+
echo "Done"

0 commit comments

Comments
 (0)