-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file is required in order to publish to the marketplace. Signed-off-by: Andrew Rynhard <[email protected]>
- Loading branch information
1 parent
d9668e0
commit 4eb4beb
Showing
5 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,12 +36,6 @@ FROM alpine:3.9 as ca-certificates | |
RUN apk add --update --no-cache ca-certificates | ||
|
||
FROM scratch AS image | ||
LABEL "com.github.actions.name"="Conform Action" | ||
LABEL "com.github.actions.description"="Policy enforcement for your pipelines." | ||
LABEL "com.github.actions.icon"="check-circle" | ||
LABEL "com.github.actions.color"="black" | ||
LABEL "repository"="https://github.com/talos-systems/conform.git" | ||
LABEL "maintainer"="Andrew Rynhard <[email protected]>" | ||
COPY --from=ca-certificates /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ | ||
COPY --from=build /conform-linux-amd64 /conform | ||
ENTRYPOINT [ "/conform" ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: "Conform Action" | ||
description: "Policy enforcement for your pipelines." | ||
branding: | ||
icon: "check-circle" | ||
color: "gray-dark" | ||
inputs: | ||
token: | ||
description: "The GitHub token. Must have repo:status access. Can be specified by using {{ secrets.GITHUB_TOKEN }}" | ||
required: true | ||
runs: | ||
using: "docker" | ||
image: "docker://autonomy/conform:v0.1.0-alpha.17" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters