8 Commits

Author SHA1 Message Date
github-actions[bot]
ffac38c285 chore(main): release 1.0.1 (#11) 2023-05-08 02:22:07 +01:00
023c0d0dc3 chore(release): remove "release-as" option (#12) 2023-05-08 02:21:09 +01:00
322dcdf56e fix(action): set correct action name in action.yml metadata (#10) 2023-05-08 02:18:34 +01:00
github-actions[bot]
38d93f4a8a chore(main): release 1.0.0 (#9) 2023-05-08 02:06:18 +01:00
22f0022a09 feat(release): prepare for v1.0.0 2023-05-08 01:58:29 +01:00
github-actions[bot]
8ae0004991 chore(main): release 0.1.1 (#8) 2023-05-08 01:53:50 +01:00
1139eaec31 feat(release): rename CI workflow to Release 2023-05-08 01:51:38 +01:00
48a1ac7188 docs(readme): update features list and examples intro 2023-05-08 01:46:41 +01:00
6 changed files with 40 additions and 17 deletions

View File

@@ -1,3 +1,3 @@
{ {
".": "0.1.0" ".": "1.0.1"
} }

View File

@@ -9,8 +9,7 @@
"bump-minor-pre-major": true, "bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true, "bump-patch-for-minor-pre-major": true,
"draft": false, "draft": false,
"prerelease": false, "prerelease": false
"initial-version": "0.0.1"
} }
}, },
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"

View File

@@ -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

View File

@@ -1,5 +1,26 @@
# Changelog # Changelog
## [1.0.1](https://github.com/jimeh/release-please-manifest-action/compare/v1.0.0...v1.0.1) (2023-05-08)
### Bug Fixes
* **action:** set correct action name in action.yml metadata ([#10](https://github.com/jimeh/release-please-manifest-action/issues/10)) ([322dcdf](https://github.com/jimeh/release-please-manifest-action/commit/322dcdf56ed8be4589ffbd70cb1382198ca65120))
## [1.0.0](https://github.com/jimeh/release-please-manifest-action/compare/v0.1.1...v1.0.0) (2023-05-08)
### Features
* **release:** prepare for v1.0.0 ([22f0022](https://github.com/jimeh/release-please-manifest-action/commit/22f0022a0932f5639bb4808df16e76c245256880))
## [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) ## [0.1.0](https://github.com/jimeh/release-please-manifest-action/compare/v0.0.6...v0.1.0) (2023-05-08)

View File

@@ -38,16 +38,17 @@ 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 here assume you have places your `release-please-config.json` and All examples assume you have placed your `release-please-config.json` and
`.release-please-manifest.json` within the `.github` folder in the root of the `.release-please-manifest.json` within the `.github` directory in the root of
repository. 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)
@@ -72,7 +73,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
steps: steps:
- uses: jimeh/release-please-manifest-action@v0 - uses: jimeh/release-please-manifest-action@v1
``` ```
<!-- x-release-please-end --> <!-- x-release-please-end -->
@@ -118,7 +119,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
steps: steps:
- uses: jimeh/release-please-manifest-action@v0 - uses: jimeh/release-please-manifest-action@v1
with: with:
token: ${{ secrets.RELEASE_PAT_TOKEN }} token: ${{ secrets.RELEASE_PAT_TOKEN }}
``` ```
@@ -178,7 +179,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
steps: steps:
- uses: jimeh/release-please-manifest-action@v0 - uses: jimeh/release-please-manifest-action@v1
with: with:
app-id: ${{ secrets.RELEASE_BOT_APP_ID }} app-id: ${{ secrets.RELEASE_BOT_APP_ID }}
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }} private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}

View File

@@ -1,5 +1,5 @@
--- ---
name: "release-please-action" name: "release-please-manifest-action"
description: >- description: >-
Opinionated action for running release-please in manifest mode with optional Opinionated action for running release-please in manifest mode with optional
support to authenticate as a GitHub App. support to authenticate as a GitHub App.