diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..772cf4d --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,23 @@ +changelog: + exclude: + labels: + - "ignore for release" + categories: + - title: "✨ New Features" + labels: + - "enhancement" + - title: "🐛 Bug Fixes" + labels: + - "bug" + - title: "📚 Documentation" + labels: + - "documentation" + - title: "⬆️ Dependencies" + labels: + - "dependencies" + - title: "💥 Breaking Changes" + labels: + - "breaking change" + - title: "🔨 Other Changes" + labels: + - "*" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..0f88acd --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +name: "🎉 Release" +run-name: "Release ${{ github.event.inputs.tag }}" + +on: + workflow_dispatch: + inputs: + tag: + description: "The release tag" + required: true + type: string + +concurrency: + group: ${{ github.workflow }} + cancel-in-progress: true + +jobs: + release: + name: "Release" + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: "Release" + uses: innofactororg/code-release@v1 + with: + tag: ${{ github.event.inputs.tag }}