1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-12 01:41:36 +02:00

feat: handle creating releases (#3)

This commit is contained in:
Benjamin E. Coe
2020-05-09 15:36:40 -07:00
committed by GitHub
parent c4b5d61f6c
commit e72afe059a
4 changed files with 712 additions and 609 deletions

View File

@@ -3,10 +3,13 @@ description: 'automated releases based on conventional commits'
author: 'Ben Coe <bencoe@google.com>'
inputs:
token:
description: 'token for creating and grooming release PRs (probably secrets.GITHUB_TOKEN)'
description: 'GitHub token for creating and grooming release PRs, e.g., secrets.GITHUB_TOKEN'
required: true
package-name:
description: 'name of the distributions releases are being created for, e.g., "name" in package.json, or "setup.py"'
required: true
release-type:
description: 'what type of release is this, e.g., nodejs, java'
description: 'what type of release is this, one of (ruby, python, node, terraform-module)'
required: true
runs:
using: 'node12'