mirror of
https://github.com/zhigang1992/isModifiedAction.git
synced 2026-01-12 22:39:40 +08:00
12 lines
335 B
Docker
12 lines
335 B
Docker
FROM node:10-slim
|
|
|
|
LABEL "com.github.actions.name"="isModified Github Action"
|
|
LABEL "com.github.actions.description"="Check if code is modified in push"
|
|
LABEL "com.github.actions.icon"="filter"
|
|
LABEL "com.github.actions.color"="black"
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
COPY isModified.js /isModified.js
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|