Skip to content

Commit 9621377

Browse files
authored
Merge da884d0 into 1a999d6
2 parents 1a999d6 + da884d0 commit 9621377

File tree

6 files changed

+526
-11
lines changed

6 files changed

+526
-11
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: "Create GitHub Issue"
2+
description: "Creates a GitHub issue"
3+
inputs:
4+
token:
5+
description: "GitHub access token"
6+
required: true
7+
default: ""
8+
action-id:
9+
description: "GitHub Action ID"
10+
required: true
11+
default: ""
12+
title:
13+
description: "Title of the issue"
14+
required: true
15+
default: "Title"
16+
artifact:
17+
description: "Name of the artifact"
18+
required: true
19+
default: "Something like buildpack-ubuntu2004-d12f0d12c9f69baa7b825033b2f9c89acea738bf1ae734efa4b343833f897e1d"
20+
package-name:
21+
description: "Name of the package being released"
22+
required: true
23+
default: "Something like buildpack-ubuntu2004"
24+
package-version:
25+
description: "Version of the package being released"
26+
required: true
27+
default: "Something like 1.0.0"
28+
outputs:
29+
issue-id:
30+
description: "ID of the created issue on GitHub"
31+
runs:
32+
using: "node12"
33+
main: "dist/index.js"

0 commit comments

Comments
 (0)