feat: added missing dockerfile and runs.using configuration
This commit is contained in:
parent
b7241772cd
commit
4cb67b5097
|
@ -0,0 +1,5 @@
|
||||||
|
FROM golang:1.19
|
||||||
|
WORKDIR /src
|
||||||
|
COPY . .
|
||||||
|
RUN go build -o /bin/app .
|
||||||
|
ENTRYPOINT ["/bin/app"]
|
|
@ -1,7 +1,10 @@
|
||||||
name: Gitea Release Drafter
|
name: Gitea Release Drafter
|
||||||
author: Christian Schulze
|
author: Christian Schulze
|
||||||
description: "automates release notes as a draft release whenever a pull request finds it's way into the default branch of your repository"
|
description: "automates release notes as a draft release whenever a pull request finds it's way into the default branch of your repository"
|
||||||
|
runs:
|
||||||
|
using: docker
|
||||||
|
image: Dockerfile
|
||||||
inputs:
|
inputs:
|
||||||
config-path:
|
config-path:
|
||||||
description: 'Path of the configuration file for the drafter action'
|
description: "Path of the configuration file for the drafter action"
|
||||||
required: false
|
required: false
|
||||||
|
|
Loading…
Reference in New Issue