mirror of
https://github.com/ant-design/ant-design.git
synced 2026-02-09 02:49:18 +08:00
* Migrate workflows to Blacksmith * Update .github/workflows/preview-build.yml Signed-off-by: thinkasany <480968828@qq.com> * preview-build.yml use runs-on: ubuntu-latest (#56367) * Initial plan * fix: add named exports for ColorPalettes and ColorPaletteToolDark to fix SSR compatibility Co-authored-by: thinkasany <117748716+thinkasany@users.noreply.github.com> * test: preview-build use ubuntu-latest --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: thinkasany <117748716+thinkasany@users.noreply.github.com> Co-authored-by: thinkasany <480968828@qq.com> --------- Signed-off-by: thinkasany <480968828@qq.com> Co-authored-by: blacksmith-sh[bot] <157653362+blacksmith-sh[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com> Co-authored-by: thinkasany <480968828@qq.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: thinkasany <117748716+thinkasany@users.noreply.github.com>
26 lines
708 B
YAML
26 lines
708 B
YAML
name: Issue Remove Inactive
|
|
|
|
on:
|
|
issues:
|
|
types: [edited]
|
|
issue_comment:
|
|
types: [created, edited]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
issue-remove-inactive:
|
|
permissions:
|
|
issues: write # for actions-cool/issues-helper to update issues
|
|
pull-requests: write # for actions-cool/issues-helper to update PRs
|
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
|
steps:
|
|
- name: remove inactive
|
|
if: github.event.issue.state == 'open' && github.actor == github.event.issue.user.login
|
|
uses: actions-cool/issues-helper@v3
|
|
with:
|
|
actions: remove-labels
|
|
issue-number: ${{ github.event.issue.number }}
|
|
labels: 'Inactive, needs-more-info'
|