chore: Updated WinAppSdk to 1.6.3 (#300) #276
This file contains 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 Please Automatic patch notes | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
main: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
release-type: simple | |
package-name: jasm | |
extra-files: | | |
src/GIMI-ModManager.WinUI/GIMI-ModManager.WinUI.csproj | |
changelog-types: > | |
[ | |
{ "type": "revert", "section": "Reverts", "hidden": false }, | |
{ "type": "feat", "section": "Features", "hidden": false }, | |
{ "type": "fix", "section": "Bug Fixes", "hidden": false }, | |
{ "type": "perf", "section": "Performance Improvements", "hidden": false }, | |
{ "type": "style", "section": "Styling", "hidden": false }, | |
{ "type": "tweak", "section": "Tweaks", "hidden": false }, | |
{ "type": "chore", "section": "Miscellaneous", "hidden": false }, | |
{ "type": "docs", "section": "Documentation", "hidden": false }, | |
{ "type": "ci", "section": "Continuous Integration", "hidden": false }, | |
{ "type": "test", "section": "Tests", "hidden": false }, | |
{ "type": "build", "section": "Build System", "hidden": false }, | |
{ "type": "refactor", "section": "Code Refactoring", "hidden": false } | |
] |