feat: PineScript support and bold keywords #58
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
# https://github.com/google-github-actions/release-please-action | |
# https://www.padok.fr/en/blog/release-please | |
name: release-please | |
# it will create or update a pull request with changes on each push on master branch | |
on: | |
push: | |
branches: | |
- main | |
- master | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
log: | |
uses: ./.github/workflows/log.yml | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
with: | |
# need a personal access token : https://github.com/settings/tokens | |
token: ${{ secrets.RELEASE_PLEASE }} | |
# node allow to access package.json to read and bump version | |
release-type: node | |
changelog-types: | | |
[ | |
{"type":"feat","section":"🚀 Features","hidden":false}, | |
{"type":"change","section":"🚀 Features","hidden":false}, | |
{"type":"deprecate","section":"⚠️ Changes","hidden":false}, | |
{"type":"remove","section":"⚠️ Changes","hidden":false}, | |
{"type":"fix","section":"🐞 Bug Fixes","hidden":false}, | |
{"type":"revert","section":"🐞 Bug Fixes","hidden":false}, | |
{"type":"security","section":"🐞 Bug Fixes","hidden":false}, | |
{"type":"perf","section":"✨ Polish","hidden":false}, | |
{"type":"refactor","section":"✨ Polish","hidden":false}, | |
{"type":"style","section":"✨ Polish","hidden":false}, | |
{"type":"build","section":"🧰 Other","hidden":false}, | |
{"type":"chore","section":"🧰 Other","hidden":false}, | |
{"type":"deps","section":"🧰 Other","hidden":true}, | |
{"type":"ci","section":"🧰 Other","hidden":true}, | |
{"type":"test","section":"🧪 Tests","hidden":false}, | |
{"type":"docs","section":"📚 Documentation","hidden":false} | |
] | |
pull-request-header: "🤖 I have created a release" | |
# package-name: ${{env.ACTION_NAME}} | |
- run: echo "🍏 This job's status is ${{ job.status }}." |