fix(Reuses page): add images to repo. Add tags. Add alert to push new… #912
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run release-please | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: GoogleCloudPlatform/[email protected] | |
with: | |
# We can't use GITHUB_TOKEN here because, github actions can't provocate actions | |
# see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow | |
# So this is a personnal access token | |
token: ${{ secrets.RELEASE_PLEASE_TOKEN }} | |
release-type: simple | |
changelog-types: | | |
[ | |
{"type":"feat","section":"Features","hidden":false}, | |
{"type":"fix","section":"Bug Fixes","hidden":false}, | |
{"type":"style","section":"Technical","hidden":false}, | |
{"type":"docs","section":"Technical","hidden":false}, | |
{"type":"test","section":"Technical","hidden":false}, | |
{"type":"chore","section":"Technical","hidden":false}, | |
{"type":"refactor","section":"Technical","hidden":false} | |
] |