refactor: 使用uv,添加开发依赖管理,移除旧的依赖文件,优化代码格式和注释,新增代码质量工具配置。 #11
This file contains hidden or 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: Changelog CI | |
| on: | |
| pull_request: | |
| types: [ opened ] | |
| workflow_dispatch: | |
| inputs: | |
| release_version: | |
| description: 'Release tag (e.g. 1.0.0)' | |
| required: true | |
| default: '1.0.0' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run Changelog CI | |
| uses: saadmk11/[email protected] | |
| with: | |
| changelog_filename: CHANGELOG.md | |
| committer_username: 'github-actions[bot]' | |
| committer_email: 'github-actions[bot]@users.noreply.github.com' | |
| release_version: ${{ github.event.inputs.release_version }} |