Skip to content

Commit

Permalink
feat: support for Release Please (#6)
Browse files Browse the repository at this point in the history
Adds a GitHub Actions workflow for executing [Release Please](https://github.com/googleapis/release-please) when commits are merged into the `main` branch. Also adds some configuration files which will be maintained by Release Please over time as commits are added.
  • Loading branch information
jwbennet authored Jan 28, 2024
1 parent 1385de8 commit 544d373
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: release-please

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4
with:
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
release-type: simple
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Changelog
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1

0 comments on commit 544d373

Please sign in to comment.