Skip to content

Commit

Permalink
feat: added action.yml and Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipebros committed Dec 2, 2020
1 parent b7c74ed commit 2c974ff
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
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"]
8 changes: 8 additions & 0 deletions action.yml
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'

0 comments on commit 2c974ff

Please sign in to comment.