Delete .github/workflows/changelog.yml

This commit is contained in:
zhr520v 2025-04-10 16:53:22 +08:00 committed by GitHub
parent 8a51e04f87
commit e4e66e9ffa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,24 +0,0 @@
name: auto changelog
on:
push:
tags:
- 'v*'
jobs:
changelog:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Delete beta tag
run: git tag -d beta
continue-on-error: true
- run: npx changelogithub # or changelogithub@0.12 if ensure the stable result
env:
GITHUB_TOKEN: ${{secrets.MY_TOKEN}}