Skip to content

fix: stop the API from trying to update the levels column since it's … #70

fix: stop the API from trying to update the levels column since it's …

fix: stop the API from trying to update the levels column since it's … #70

Workflow file for this run

name: Version
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Generate changelog
id: changelog
uses: TriPSs/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
git-message: "chore(release): {version}"
preset: "angular"
tag-prefix: "v"
output-file: "CHANGELOG.md"
skip-version-file: "true"
skip-on-empty: "true"
skip-commit: "false"
- name: Create release
uses: actions/[email protected]
if: ${{ steps.changelog.outputs.skipped == 'false' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.changelog.outputs.tag }}
release_name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}
- name: Discord notification
uses: rguillaume/[email protected]
with:
webhook: ${{ secrets.UPDATES_WEBHOOK }}
embed: '{"title": "Update: ${{ github.event.repository.name }}", "description": ${{ toJSON(github.event.head_commit.message) }}, "url": "${{ github.event.head_commit.url }}", "footer": {"text": "Committer: ${{ github.event.head_commit.author.username }}"}, "color": "12582656"}'