You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# GitHub token for creating and grooming release PRs, defaults to using secrets.GITHUB_TOKEN
55
-
token: # optional, default is ${{ github.token }}
56
-
# should the PR be proposed from a fork, Default to false
57
-
fork: # optional
58
-
# Should stale release PRs be closed post release? Defaults to true
59
-
clean: # optional, default is true
60
-
# name of the distributions releases are being created for, e.g., "name" in package.json, or "setup.py"
61
-
package-name: # optional
55
+
token: ${{ github.token }}
62
56
# what type of release is this, one of (ruby, python, node, terraform-module)
63
-
release-type: simple
64
-
# should breaking changes before 1.0.0 produce minor bumps
65
-
bump-minor-pre-major: # optional
66
-
# should feat changes before 1.0.0 produce patch bumps instead of minor bumps
67
-
bump-patch-for-minor-pre-major: # optional
68
-
# create a release from a path other than the repository's root
69
-
path: # optional, default is
70
-
# specify a CHANGELOG path other than the root CHANGELOG.md
71
-
changelog-path: # optional, default is
72
-
# release-please command to run, either "github-release", or "release-pr" (defaults to running both)
73
-
command: # optional, default is
74
-
# provide a path to a version file to increment (used by ruby releaser)
75
-
version-file: # optional, default is
76
-
# extra files to bump using the generic updater
77
-
extra-files: # optional, default is
78
-
# branch to open pull release PR against (detected by default)
79
-
default-branch: # optional, default is
80
-
# changlelog commit types
81
-
changelog-types: # optional, default is
82
-
# where can the config file be found in the project?
83
-
config-file: # optional, default is
84
-
# where can the manifest file be found in the project?
85
-
manifest-file: # optional, default is
86
-
# Add [`Signed-off-by`](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff) line at the end of the commit log message using the user and email provided. (format "Name \<[email protected]\>")
87
-
signoff: # optional, default is
88
-
# configure github API URL. Default `https://api.github.com`
0 commit comments