2024-08-05 23:49:31 +02:00
|
|
|
name: 'releaser-pleaser'
|
|
|
|
|
description: 'automated releases based on conventional commits'
|
|
|
|
|
author: Julian Tölle
|
|
|
|
|
branding:
|
|
|
|
|
icon: 'package'
|
|
|
|
|
color: 'red'
|
|
|
|
|
inputs:
|
2024-08-25 22:13:56 +02:00
|
|
|
# Remember to update docs/reference/github-action.md
|
2024-08-05 23:49:31 +02:00
|
|
|
branch:
|
|
|
|
|
default: main
|
|
|
|
|
description: "This branch is used as the target for releases."
|
|
|
|
|
token:
|
2024-08-25 22:13:56 +02:00
|
|
|
description: 'GitHub token for creating and updating release PRs, defaults to using secrets.GITHUB_TOKEN'
|
2024-08-05 23:49:31 +02:00
|
|
|
required: false
|
|
|
|
|
default: ${{ github.token }}
|
2024-08-23 22:02:58 +02:00
|
|
|
extra-files:
|
|
|
|
|
description: 'List of files that are scanned for version references.'
|
|
|
|
|
required: false
|
|
|
|
|
default: ""
|
2024-08-25 22:13:56 +02:00
|
|
|
# Remember to update docs/reference/github-action.md
|
2024-08-05 23:49:31 +02:00
|
|
|
outputs: {}
|
|
|
|
|
runs:
|
|
|
|
|
using: 'docker'
|
2024-09-25 13:06:06 +02:00
|
|
|
image: ghcr.io/apricote/releaser-pleaser:v0.4.0 # x-releaser-pleaser-version
|
2024-08-05 23:49:31 +02:00
|
|
|
args:
|
|
|
|
|
- run
|
|
|
|
|
- --forge=github
|
|
|
|
|
- --branch=${{ inputs.branch }}
|
2024-09-15 20:59:17 +02:00
|
|
|
- --extra-files="${{ inputs.extra-files }}"
|
2024-08-05 23:49:31 +02:00
|
|
|
env:
|
2024-09-15 20:59:17 +02:00
|
|
|
GITHUB_TOKEN: "${{ inputs.token }}"
|
2024-08-06 00:04:11 +02:00
|
|
|
GITHUB_USER: "oauth2"
|