docs: add contributing section to README for contribution guidelines … #3
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
| name: Semantic Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write # to be able to publish a GitHub release | |
| pull-requests: write # to be able to comment on released pull requests | |
| issues: write # to be able to comment on released issues | |
| jobs: | |
| release: | |
| name: release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Release | |
| uses: cycjimmy/[email protected] | |
| with: | |
| semantic_version: 24.2.3 | |
| extra_plugins: | | |
| [email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |