test: added fuzz test for parsing #1
Workflow file for this run
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: Release | |
| permissions: | |
| contents: read | |
| # description: | | |
| # Build a github release on pushed tag. | |
| # | |
| # The only available asset is a release note. | |
| on: | |
| push: | |
| tags: | |
| - v[0-9]+* | |
| jobs: | |
| gh-release: | |
| name: Create release | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - | |
| name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| name: Generate release notes | |
| id: notes | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| GITHUB_REPO: ${{ github.repository }} | |
| uses: orhun/git-cliff-action@d77b37db2e3f7398432d34b72a12aa3e2ba87e51 # v4.6.0 | |
| with: | |
| config: '.cliff.toml' | |
| args: >- | |
| --current | |
| - | |
| name: Create github release | |
| uses: softprops/action-gh-release@5be0e66d93ac7ed76da52eca8bb058f665c3a5fe # v2.4.2 | |
| with: | |
| body: ${{ steps.notes.outputs.content }} |