* addind jq to dockerfile and unsing info from head commit * remove inputs * remove quotes from author information * author and email not from input - ignored files from intellij * setting author name and email if given as input * remove over-the-top echoing * Fix typos & formatting * Try to fix checks * Fix checks The new check works the opposite way
17 lines
527 B
Docker
17 lines
527 B
Docker
FROM alpine/git:1.0.7
|
|
|
|
LABEL "com.github.actions.name"="Add & Commit"
|
|
LABEL "com.github.actions.description"="Add & commit files from a path directly from GitHub Actions"
|
|
LABEL "com.github.actions.icon"="git-commit"
|
|
LABEL "com.github.actions.color"="black"
|
|
|
|
LABEL "repository"="https://github.com/EndBug/add-and-commit"
|
|
LABEL "homepage"="https://github.com/EndBug/add-and-commit"
|
|
LABEL "maintainer"="Federico Grandi <fgrandi30@gmail.com>"
|
|
|
|
RUN apk add jq
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["sh", "/entrypoint.sh"]
|