Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stafflinepeopleplus/changeset-github-release
Takes changelogs generated from a changeset and pushes the release to github if not already found.
https://github.com/stafflinepeopleplus/changeset-github-release
Last synced: 27 days ago
JSON representation
Takes changelogs generated from a changeset and pushes the release to github if not already found.
- Host: GitHub
- URL: https://github.com/stafflinepeopleplus/changeset-github-release
- Owner: StafflinePeoplePlus
- Created: 2024-05-01T13:52:09.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-15T11:32:13.000Z (9 months ago)
- Last Synced: 2024-11-11T18:29:20.656Z (3 months ago)
- Language: TypeScript
- Size: 1.08 MB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Changeset Github Release
This is a CLI tool and primarily a GitHub Action to create GitHub releases automatically based on a
`CHANGELOG.md` file that is generated from changesets (or in theory another tool that outputs
similar enough markdown).Note: This action currently only supports one package per repo as it does not add the name of the
package to the release or tag.## Action
Assuming the CHANGELOG has already been generated, the following action will create a GitHub release
for the version in your package.json. It is safe to run this multiple times, if the release already
exists it will exit successfully.```yaml
on:
push:
branches:
- mainjobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create Release
uses: StafflinePeoplePlus/[email protected]
```This repo uses this action to create its releases so feel free to peek at
`.github/workflows/main.yml` for a full example in combo with the changesets action.### Options
By default the action will automatically pick up the repo name & owner, and the `package.json` and
`CHANGELOG.md` files, but if theses are in non standard locations or for some reason you need to
change the repo the release happens on, then you can do so:```yaml
on:
push:
branches:
- mainjobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create Release
uses: StafflinePeoplePlus/[email protected]
with:
owner: my-username
repo: my-cool-repo
package-json: path/to/package.json
changelog: path/to/CHANGELOG.md
```