diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..39206b8 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,23 @@ +name: Release + +on: + push: + tags: + - '!refs/tags/*' + - '!*' + - v* + +permissions: + contents: write + +jobs: + hello_world_job: + runs-on: ubuntu-latest + name: Create Release + steps: + - uses: maxnowack/action-release-generator@v1.4.0 + with: + token: "${{ secrets.GITHUB_TOKEN }}" + useNameFromRef: 'true' + ref: "${{ github.ref }}" + badwords: 'ci:,docs:,chore:,chore(deps),fix(deps)'