-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added action.yml and Dockerfile
- Loading branch information
1 parent
b7c74ed
commit 2c974ff
Showing
2 changed files
with
22 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM alpine:latest | ||
|
||
LABEL "com.github.actions.name"="WIP blocker with labels in PR" | ||
LABEL "com.github.actions.description"="Github action WIP blocker with labels in Pull requests" | ||
LABEL "com.github.actions.icon"="tag" | ||
LABEL "com.github.actions.color"="gray-dark" | ||
|
||
LABEL repository="https://github.com/Felipebros/github-action-WIP-blocker-with-labels-in-PR" | ||
LABEL homepage="https://github.com/Felipebros/github-action-WIP-blocker-with-labels-in-PR" | ||
|
||
RUN apk add --no-cache bash curl jq git | ||
|
||
ADD entrypoint.sh /entrypoint.sh | ||
ENTRYPOINT ["/entrypoint.sh"] |
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,8 @@ | ||
name: 'WIP blocker with labels in PR' | ||
description: 'Github action WIP blocker with labels in Pull requests' | ||
branding: | ||
icon: 'tag' | ||
color: 'gray-dark' | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' |