Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit e72afe0

Browse files
author
Benjamin E. Coe
authored
feat: handle creating releases (#3)
1 parent c4b5d61 commit e72afe0

File tree

4 files changed

+706
-603
lines changed

4 files changed

+706
-603
lines changed

.github/workflows/update-pr.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ jobs:
1111
with:
1212
token: ${{ secrets.GITHUB_TOKEN }}
1313
release-type: node
14+
package-name: release-please-action

action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ description: 'automated releases based on conventional commits'
33
author: 'Ben Coe <[email protected]>'
44
inputs:
55
token:
6-
description: 'token for creating and grooming release PRs (probably secrets.GITHUB_TOKEN)'
6+
description: 'GitHub token for creating and grooming release PRs, e.g., secrets.GITHUB_TOKEN'
7+
required: true
8+
package-name:
9+
description: 'name of the distributions releases are being created for, e.g., "name" in package.json, or "setup.py"'
710
required: true
811
release-type:
9-
description: 'what type of release is this, e.g., nodejs, java'
12+
description: 'what type of release is this, one of (ruby, python, node, terraform-module)'
1013
required: true
1114
runs:
1215
using: 'node12'

0 commit comments

Comments
 (0)