We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac8c9b8 commit 6cc9b57Copy full SHA for 6cc9b57
Dockerfile
@@ -0,0 +1,12 @@
1
+FROM golang:1.13
2
+#AS build
3
+
4
+WORKDIR /go/src/app
5
+COPY . /go/src/app
6
+RUN go get -d -v ./...
7
+RUN go build -o /go/bin/github-labeler main.go
8
9
+# FROM busybox
10
+# COPY --from=build /go/bin/app /github-labeler
11
12
+ENTRYPOINT ["/go/bin/github-labeler"]
action.yml
@@ -0,0 +1,10 @@
+name: 'github-labeler'
+description: 'Declarative way to configure GitHub labels'
+inputs:
+ manifest:
+ description: 'Path to YAML file which defines GitHub labels'
+ required: false
+ default: '.github/labels.yml'
+runs:
+ using: 'docker'
+ image: 'Dockerfile'
0 commit comments