refactor: ♻️ optimization concurrent-safety and adding api doc… #21
This file contains hidden or 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://johanneskonings.dev/github/2021/02/28/github_automatic_releases_and-changelog/ | |
| # https://tiagomichaelsousa.dev/articles/stop-writing-your-changelogs-manually | |
| name: Release Drafter | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| jobs: | |
| update-release-draft: | |
| name: Release drafter | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # write permission is required to create a github release | |
| contents: write | |
| steps: | |
| - name: Update Release Draft | |
| uses: release-drafter/release-drafter@v6 | |
| with: | |
| config-name: release-drafter.yml | |
| disable-autolabeler: true | |
| ## Default versioning just increase the path version as default. but the can use minor, patch and breaking-changes labels to apply semver | |
| # version: 1.29.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |