comment-on-pr/Dockerfile

11 lines
337 B
Text
Raw Normal View History

2019-05-23 02:40:32 +08:00
FROM ruby:2.6.0
LABEL "com.github.actions.name"="Comment on PR"
LABEL "com.github.actions.description"="Leaves a comment on an open PR matching a push event."
2019-05-23 04:59:21 +08:00
LABEL "com.github.actions.icon"="message-square"
LABEL "com.github.actions.color"="blue"
2019-05-23 02:40:32 +08:00
RUN gem install octokit
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]