Skip to content

Commit b0e5477

Browse files
authored
chore: Add Release Please action (#176)
Adds the [release-please-action][1] so it automates CHANGELOG generation, the creation of GitHub releases, and version bumps for your projects. It does so by parsing the git history, looking for [Conventional Commit messages][2], and creating release PRs. [1]: https://github.com/googleapis/release-please-action [2]: https://www.conventionalcommits.org
1 parent 703d2b9 commit b0e5477

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release Please
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
issues: write
11+
pull-requests: write
12+
13+
jobs:
14+
release:
15+
name: Release
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: googleapis/release-please-action@v4
19+
with:
20+
token: ${{ secrets.RELEASE_PLEASE_PAT }}
21+
release-type: elixir

0 commit comments

Comments
 (0)