-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e5aa00
commit 259718d
Showing
12 changed files
with
150 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
repos: | ||
|
||
- repo: local | ||
hooks: | ||
- id: auto-doc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Refenrences bump-version composite action | ||
|
||
## Inputs | ||
|
||
<!-- AUTO-DOC-INPUT:START - Do not remove or modify this section --> | ||
|
||
| INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION | | ||
| ----------------- | ------ | -------- | ------- | ----------------------------------------------------- | | ||
| new-version | string | false | | | | ||
| release-type | string | true | | The type of the release (major, minor or patch). | | ||
| working-directory | string | false | `"."` | The directory containing the `.bumpversion.cfg` file. | | ||
|
||
<!-- AUTO-DOC-INPUT:END --> | ||
|
||
## Outputs | ||
|
||
<!-- AUTO-DOC-OUTPUT:START - Do not remove or modify this section --> | ||
|
||
| OUTPUT | TYPE | DESCRIPTION | | ||
| --------------- | ------ | ------------------------------------------------ | | ||
| old-version | string | The old version in your `.bumpversion.cfg` file. | | ||
| release-version | string | The bumped version of your project. | | ||
|
||
<!-- AUTO-DOC-OUTPUT:END --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Refenrences changelog-generate composite action | ||
|
||
## Inputs | ||
|
||
<!-- AUTO-DOC-INPUT:START - Do not remove or modify this section --> | ||
|
||
| INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION | | ||
| ------------------------- | ------ | -------- | ---------------- | -------------------------------------------------------------- | | ||
| changelog-file | string | false | `"CHANGELOG.md"` | Path to the changelog file in the GitHub repository | | ||
| commit-mode | string | false | `"false"` | Special configuration for projects which work without PRs. | | ||
| config | string | false | | Path to the changelog config JSON file | | ||
| fetch-release-information | string | false | `"false"` | Will enable fetching additional release information from tags. | | ||
| fetch-reviewers | string | false | `"false"` | Will enable fetching the users/reviewers who approved the PR | | ||
| github-token | string | true | | The GitHub token for committing the changes. | | ||
| new-tag | string | true | | Version after bump | | ||
| old-tag | string | false | | Previous version. Let empty for releases | | ||
|
||
<!-- AUTO-DOC-INPUT:END --> | ||
|
||
## Outputs | ||
|
||
<!-- AUTO-DOC-OUTPUT:START - Do not remove or modify this section --> | ||
|
||
| OUTPUT | TYPE | DESCRIPTION | | ||
| ---------------- | ------ | ----------------------------------------------------- | | ||
| merged-changelog | string | Changelog containing listing of all single changelogs | | ||
| single-changelog | string | Changelog containing changes of the latest tag | | ||
|
||
<!-- AUTO-DOC-OUTPUT:END --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Refenrences commit-and-push composite action | ||
|
||
## Inputs | ||
|
||
<!-- AUTO-DOC-INPUT:START - Do not remove or modify this section --> | ||
|
||
| INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION | | ||
| ----------------- | ------ | -------- | ------------------------------------------------- | --------------------------------------------------- | | ||
| add-untracked | string | false | `"false"` | Whether to add untracked files to commit. | | ||
| commit-message | string | true | | The commit message. | | ||
| github-email | string | true | | The GitHub email for committing the changes. | | ||
| github-token | string | true | | The GitHub token for committing the changes. | | ||
| github-username | string | true | | The GitHub username for committing the changes. | | ||
| pass-empty-commit | string | false | `"false"` | Whether to exit with code 0 when nothing to commit. | | ||
| ref | string | false | `"${{ github.event.repository.default_branch }}"` | The ref name to commit and push the files on. | | ||
|
||
<!-- AUTO-DOC-INPUT:END --> | ||
|
||
## Outputs | ||
|
||
<!-- AUTO-DOC-OUTPUT:START - Do not remove or modify this section --> | ||
|
||
No outputs. | ||
|
||
<!-- AUTO-DOC-OUTPUT:END --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Refenrences helm-lint composite action | ||
|
||
## Inputs | ||
|
||
<!-- AUTO-DOC-INPUT:START - Do not remove or modify this section --> | ||
|
||
| INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION | | ||
| ---------------- | ------ | -------- | ---------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | | ||
| helm-version | string | false | `"v3.10.1"` | The Helm version. | | ||
| lint-config-path | string | false | `".github/lint-config.yaml"` | The path to the lint configuration file (For an example see https://github.com/helm/chart-testing/blob/main/pkg/config/test_config.yaml). | | ||
| ref | string | false | `"${{ github.ref_name }}"` | The ref name to checkout the repository. | | ||
|
||
<!-- AUTO-DOC-INPUT:END --> | ||
|
||
## Outputs | ||
|
||
<!-- AUTO-DOC-OUTPUT:START - Do not remove or modify this section --> | ||
|
||
No outputs. | ||
|
||
<!-- AUTO-DOC-OUTPUT:END --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,3 @@ | |
No outputs. | ||
|
||
<!-- AUTO-DOC-OUTPUT:END --> | ||
|
||
## Inputs | ||
|
||
## Outputs |
27 changes: 27 additions & 0 deletions
27
docs/references/actions/java-gradle-publish-plugin/Variables.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,28 @@ | ||
# Refenrences java-gradle-publish-plugin composite action | ||
|
||
## Inputs | ||
|
||
<!-- AUTO-DOC-INPUT:START - Do not remove or modify this section --> | ||
|
||
| INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION | | ||
| ----------------------- | ------ | -------- | ------------- | --------------------------------------------------------------- | | ||
| gradle-cache | string | false | `"true"` | Whether Gradle caching is enabled or not. (Default is true) | | ||
| gradle-publish-key | string | true | | Key for publishing to Gradle Plugin Portal. | | ||
| gradle-publish-secret | string | true | | Secret for publishing to Gradle Plugin Portal. | | ||
| gradle-version | string | false | `"wrapper"` | Gradle version to be installed. (Default is wrapper) | | ||
| java-distribution | string | false | `"microsoft"` | Java distribution to be installed. (Default is microsoft) | | ||
| java-version | string | false | `"11"` | Java version to be installed. (Default is 11) | | ||
| signing-key-id | string | true | | Key id for signing the Sonatype publication. | | ||
| signing-password | string | true | | Password for signing the Sonatype publication. | | ||
| signing-secret-key-ring | string | true | | Key ring (base64 encoded) for signing the Sonatype publication. | | ||
| working-directory | string | false | `"."` | Working directory of your Gradle artifacts. (Default is .) | | ||
|
||
<!-- AUTO-DOC-INPUT:END --> | ||
|
||
## Outputs | ||
|
||
<!-- AUTO-DOC-OUTPUT:START - Do not remove or modify this section --> | ||
|
||
No outputs. | ||
|
||
<!-- AUTO-DOC-OUTPUT:END --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters