Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ on:
- "tdesign-component/pubspec.yaml"
issue_comment:
types: [edited]
push:
tags:
- "*"

jobs:
generator:
Expand Down Expand Up @@ -98,13 +95,3 @@ jobs:
git config --local user.name "github-actions[bot]"
git tag ${{ steps.tag-action.outputs.version }}
git push origin ${{ steps.tag-action.outputs.version }}

close-release-issue:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: TDesignOteam/workflows/actions/close-release-issue@rss1102/flutter/issue-close
with:
version: ${{ github.ref_name }}
label: ${{ github.ref_name }}
token: ${{ secrets.PERSONAL_TOKEN }}
17 changes: 14 additions & 3 deletions .github/workflows/tag-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,22 @@ jobs:
with:
ref: main
fetch-depth: 0
token: ${{ secrets.PERSONAL_TOKEN }}
token: ${{ secrets.TDESIGN_BOT_TOKEN }}
- run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git config --local user.email "tdesign@tencent.com"
git config --local user.name "tdesign-bot"
git status
git fetch origin
git merge origin/develop
git push origin main


close-release-issue:
runs-on: ubuntu-latest
if: github.event.ref_type == 'tag'
steps:
- uses: TDesignOteam/workflows/actions/close-release-issue@main
with:
version: ${{ github.ref_name }}
label: ${{ github.ref_name }}
token: ${{ secrets.TDESIGN_BOT_TOKEN }}