mirror of
https://github.com/jimeh/release-please-manifest-action.git
synced 2026-02-19 09:06:42 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8ae0004991 | ||
|
1139eaec31
|
|||
|
48a1ac7188
|
|||
|
|
5a9880757d | ||
|
9d21ba2763
|
|||
|
4d6baa6f81
|
3
.github/.release-please-manifest.json
vendored
Normal file
3
.github/.release-please-manifest.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
".": "0.1.1"
|
||||||
|
}
|
||||||
3
.github/release-please-manifest.json
vendored
3
.github/release-please-manifest.json
vendored
@@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
".": "0.0.6"
|
|
||||||
}
|
|
||||||
@@ -1,11 +1,13 @@
|
|||||||
---
|
---
|
||||||
name: CI
|
name: Release
|
||||||
on: push
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release-please:
|
release-please:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.ref == 'refs/heads/main'
|
|
||||||
steps:
|
steps:
|
||||||
- uses: jimeh/release-please-manifest-action@main
|
- uses: jimeh/release-please-manifest-action@main
|
||||||
id: release
|
id: release
|
||||||
18
CHANGELOG.md
18
CHANGELOG.md
@@ -1,5 +1,23 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.1.1](https://github.com/jimeh/release-please-manifest-action/compare/v0.1.0...v0.1.1) (2023-05-08)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **release:** rename CI workflow to Release ([1139eae](https://github.com/jimeh/release-please-manifest-action/commit/1139eaec31e83556c1eb35a523ee76485efb9ab5))
|
||||||
|
|
||||||
|
## [0.1.0](https://github.com/jimeh/release-please-manifest-action/compare/v0.0.6...v0.1.0) (2023-05-08)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* **action:** Change default manifest path to `.github/.release-please-manifest.json`.
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **action:** change default manifest file path ([4d6baa6](https://github.com/jimeh/release-please-manifest-action/commit/4d6baa6f81afde8c72681281cc4f6a9f675b8dda))
|
||||||
|
|
||||||
## [0.0.6](https://github.com/jimeh/release-please-manifest-action/compare/v0.0.5...v0.0.6) (2023-05-08)
|
## [0.0.6](https://github.com/jimeh/release-please-manifest-action/compare/v0.0.5...v0.0.6) (2023-05-08)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
43
README.md
43
README.md
@@ -38,13 +38,18 @@ running [release-please][] in [manifest mode][].
|
|||||||
|
|
||||||
- Focuses on and only supports running release-please's manifest command.
|
- Focuses on and only supports running release-please's manifest command.
|
||||||
- Optionally supports having release-please authenticate as a GitHub App.
|
- Optionally supports having release-please authenticate as a GitHub App.
|
||||||
- By default places release-please config and manifest files within the
|
- Defaults to looking for release-please's config and manifest files within the
|
||||||
top-level `.github` directory instead of in the repository root:
|
top-level `.github` directory instead of in the repository root.
|
||||||
- `.github/release-please-manifest.json`
|
|
||||||
- `.github/release-please-config.json`
|
|
||||||
|
|
||||||
# Examples
|
# Examples
|
||||||
|
|
||||||
|
All examples assume you have placed your `release-please-config.json` and
|
||||||
|
`.release-please-manifest.json` within the `.github` directory in the root of
|
||||||
|
the repository.
|
||||||
|
|
||||||
|
See release-please's [manifest-releaser][manifest mode] documentation for
|
||||||
|
details about the config and manifest files.
|
||||||
|
|
||||||
## Basic (Actions Token)
|
## Basic (Actions Token)
|
||||||
|
|
||||||
This example will have release-please authenticate using `secrets.GITHUB_TOKEN`
|
This example will have release-please authenticate using `secrets.GITHUB_TOKEN`
|
||||||
@@ -88,7 +93,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
command: manifest
|
command: manifest
|
||||||
config-file: .github/release-please-config.json
|
config-file: .github/release-please-config.json
|
||||||
manifest-file: .github/release-please-manifest.json
|
manifest-file: .github/.release-please-manifest.json
|
||||||
```
|
```
|
||||||
|
|
||||||
_Note: Outputs are not included in this equivalence example._
|
_Note: Outputs are not included in this equivalence example._
|
||||||
@@ -137,7 +142,7 @@ jobs:
|
|||||||
token: ${{ secrets.RELEASE_PAT_TOKEN }}
|
token: ${{ secrets.RELEASE_PAT_TOKEN }}
|
||||||
command: manifest
|
command: manifest
|
||||||
config-file: .github/release-please-config.json
|
config-file: .github/release-please-config.json
|
||||||
manifest-file: .github/release-please-manifest.json
|
manifest-file: .github/.release-please-manifest.json
|
||||||
```
|
```
|
||||||
|
|
||||||
_Note: Outputs are not included in this equivalence example._
|
_Note: Outputs are not included in this equivalence example._
|
||||||
@@ -203,7 +208,7 @@ jobs:
|
|||||||
token: ${{ steps.github-app-token.outputs.token }}
|
token: ${{ steps.github-app-token.outputs.token }}
|
||||||
command: manifest
|
command: manifest
|
||||||
config-file: .github/release-please-config.json
|
config-file: .github/release-please-config.json
|
||||||
manifest-file: .github/release-please-manifest.json
|
manifest-file: .github/.release-please-manifest.json
|
||||||
```
|
```
|
||||||
|
|
||||||
_Note: Outputs are not included in this equivalence example._
|
_Note: Outputs are not included in this equivalence example._
|
||||||
@@ -216,18 +221,18 @@ _Note: Outputs are not included in this equivalence example._
|
|||||||
|
|
||||||
## Inputs
|
## Inputs
|
||||||
|
|
||||||
| parameter | description | required | default |
|
| parameter | description | required | default |
|
||||||
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------- | ------------------------------------ |
|
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------- | ------------------------------------- |
|
||||||
| token | GitHub token used to authenticate. | `false` | ${{ github.token }} |
|
| token | GitHub token used to authenticate. | `false` | ${{ github.token }} |
|
||||||
| app-id | ID of the GitHub App to use for authentication. If set, takes precedence over token input. | `false` | |
|
| app-id | ID of the GitHub App to use for authentication. If set, takes precedence over token input. | `false` | |
|
||||||
| private-key | Private key of the GitHub App (can be Base64 encoded). Required when app-id is provided. | `false` | |
|
| private-key | Private key of the GitHub App (can be Base64 encoded). Required when app-id is provided. | `false` | |
|
||||||
| installation-id | ID of the installation for which the app token will be requested. Defaults to the ID of the repository's installation. | `false` | |
|
| installation-id | ID of the installation for which the app token will be requested. Defaults to the ID of the repository's installation. | `false` | |
|
||||||
| permissions | JSON-stringified permissions granted to the app token. Defaults to all the GitHub app permissions, see: https://docs.github.com/en/rest/apps/apps#create-an-installation-access-token-for-an-app | `false` | |
|
| permissions | JSON-stringified permissions granted to the app token. Defaults to all the GitHub app permissions, see: https://docs.github.com/en/rest/apps/apps#create-an-installation-access-token-for-an-app | `false` | |
|
||||||
| github-api-url | Configure github API URL. | `false` | ${{ github.api_url }} |
|
| github-api-url | Configure github API URL. | `false` | ${{ github.api_url }} |
|
||||||
| repository | The full name of the repository to operate on in owner/repo format. Defaults to the current repository. | `false` | ${{ github.repository }} |
|
| repository | The full name of the repository to operate on in owner/repo format. Defaults to the current repository. | `false` | ${{ github.repository }} |
|
||||||
| default-branch | Branch to open pull release PR against. Defaults to the repository's default branch. | `false` | |
|
| default-branch | Branch to open pull release PR against. Defaults to the repository's default branch. | `false` | |
|
||||||
| config-file | Pat to config file within the project. | `false` | .github/release-please-config.json |
|
| config-file | Pat to config file within the project. | `false` | .github/release-please-config.json |
|
||||||
| manifest-file | Path to manifest file within the project. | `false` | .github/release-please-manifest.json |
|
| manifest-file | Path to manifest file within the project. | `false` | .github/.release-please-manifest.json |
|
||||||
|
|
||||||
<!-- action-docs-inputs -->
|
<!-- action-docs-inputs -->
|
||||||
|
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ inputs:
|
|||||||
manifest-file:
|
manifest-file:
|
||||||
description: Path to manifest file within the project.
|
description: Path to manifest file within the project.
|
||||||
required: false
|
required: false
|
||||||
default: ".github/release-please-manifest.json"
|
default: ".github/.release-please-manifest.json"
|
||||||
|
|
||||||
outputs:
|
outputs:
|
||||||
release_created:
|
release_created:
|
||||||
|
|||||||
Reference in New Issue
Block a user