Skip to content

Commit 38efd01

Browse files
blacksmith-sh[bot]afc163thinkasanyCopilot
authored
.github/workflows: Migrate workflows to Blacksmith runners (ant-design#56282)
* 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 (ant-design#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>
1 parent 8852b23 commit 38efd01

33 files changed

Lines changed: 55 additions & 55 deletions

.github/workflows/discussion-open-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
discussion-create:
1212
permissions:
1313
contents: read # for visiky/dingtalk-release-notify to get latest release
14-
runs-on: ubuntu-latest
14+
runs-on: blacksmith-4vcpu-ubuntu-2404
1515
steps:
1616
- name: send to dingtalk
1717
uses: visiky/dingtalk-release-notify@main

.github/workflows/issue-check-inactive.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
permissions:
1313
issues: write # for actions-cool/issues-helper to update issues
1414
pull-requests: write # for actions-cool/issues-helper to update PRs
15-
runs-on: ubuntu-latest
15+
runs-on: blacksmith-4vcpu-ubuntu-2404
1616
steps:
1717
- name: check-inactive
1818
uses: actions-cool/issues-helper@v3

.github/workflows/issue-close-require.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
permissions:
1313
issues: write # for actions-cool/issues-helper to update issues
1414
pull-requests: write # for actions-cool/issues-helper to update PRs
15-
runs-on: ubuntu-latest
15+
runs-on: blacksmith-4vcpu-ubuntu-2404
1616
steps:
1717
- name: need reproduce
1818
uses: actions-cool/issues-helper@v3

.github/workflows/issue-inactivity-reminder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
reminder_job:
12-
runs-on: ubuntu-latest
12+
runs-on: blacksmith-4vcpu-ubuntu-2404
1313
steps:
1414
- name: Send reminders for inactive issues
1515
uses: actions/github-script@v8

.github/workflows/issue-labeled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
issues: write # for actions-cool/issues-helper to update issues
1616
pull-requests: write # for actions-cool/issues-helper to update PRs
17-
runs-on: ubuntu-latest
17+
runs-on: blacksmith-4vcpu-ubuntu-2404
1818
steps:
1919
- name: help wanted
2020
if: github.event.label.name == 'help wanted'

.github/workflows/issue-open-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: read # for visiky/dingtalk-release-notify to get latest release
1414
issues: write # for actions-cool/issues-helper to update issues
1515
pull-requests: write # for actions-cool/issues-helper to update PRs
16-
runs-on: ubuntu-latest
16+
runs-on: blacksmith-4vcpu-ubuntu-2404
1717
steps:
1818
- uses: actions-cool/check-user-permission@v2
1919
id: checkUser

.github/workflows/issue-remove-inactive.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
issues: write # for actions-cool/issues-helper to update issues
1616
pull-requests: write # for actions-cool/issues-helper to update PRs
17-
runs-on: ubuntu-latest
17+
runs-on: blacksmith-4vcpu-ubuntu-2404
1818
steps:
1919
- name: remove inactive
2020
if: github.event.issue.state == 'open' && github.actor == github.event.issue.user.login

.github/workflows/issue-schedule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
send-message:
9-
runs-on: ubuntu-latest
9+
runs-on: blacksmith-4vcpu-ubuntu-2404
1010
steps:
1111
- name: Send Unconfirmed Issues to DingTalk
1212
uses: actions/github-script@v8

.github/workflows/mock-project-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
jobs:
1515
pr-check-ci:
1616
if: github.repository == 'ant-design/ant-design'
17-
runs-on: ubuntu-latest
17+
runs-on: blacksmith-4vcpu-ubuntu-2404
1818
name: Build Project
1919
steps:
2020
- name: checkout

.github/workflows/pkg.pr.new.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [push, pull_request]
33

44
jobs:
55
build:
6-
runs-on: ubuntu-latest
6+
runs-on: blacksmith-4vcpu-ubuntu-2404
77

88
steps:
99
- name: Checkout code

0 commit comments

Comments
 (0)