Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
e5e3fb6
chore: standardize repository setup
afc163 Jun 26, 2026
1244874
chore: address preview review feedback
afc163 Jun 26, 2026
c72f049
chore: align image preview output
afc163 Jun 26, 2026
0b10898
docs: address image review feedback
afc163 Jun 26, 2026
e64cdbc
chore: include dumi config in tsconfig
afc163 Jun 26, 2026
31dbc5e
chore: remove cloudflare preview and now-build
afc163 Jun 26, 2026
433155d
chore: rerun vercel preview
afc163 Jun 26, 2026
115426a
docs: standardize README release details
afc163 Jun 26, 2026
0cc3390
ci: make surge preview non-blocking
afc163 Jun 26, 2026
226d9a4
ci: keep surge preview as fallback
afc163 Jun 26, 2026
296639e
docs: refine README usage and ecosystem note
afc163 Jun 27, 2026
b1f72d5
ci: isolate surge preview token
afc163 Jun 27, 2026
3c53717
docs: add Chinese README
afc163 Jun 27, 2026
f3f549f
docs: add Ant Design logo to README
afc163 Jun 27, 2026
30471d1
docs: refine bilingual README branding
afc163 Jun 27, 2026
a9da01a
chore: standardize rc tooling and docs
afc163 Jun 27, 2026
607912f
chore: address standardization review comments
afc163 Jun 27, 2026
f6bb4cf
chore: ignore dumi build output
afc163 Jun 28, 2026
47c44bb
docs: add license file
afc163 Jun 28, 2026
49ac320
ci: use actions checkout v7
afc163 Jun 28, 2026
64cbe5d
chore: standardize package metadata
afc163 Jun 28, 2026
2540b0d
ci: standardize dependabot updates
afc163 Jun 28, 2026
ea3ac6c
docs: fix Chinese README API names
afc163 Jun 28, 2026
8e2f91a
chore: refine preview workflow ignores
afc163 Jun 28, 2026
0e65534
docs: polish Chinese README wording
afc163 Jun 28, 2026
fa53789
chore: add missing prettier dependency
afc163 Jun 28, 2026
e5c1d72
docs: fix Chinese README wording
afc163 Jun 28, 2026
82b6a3c
chore: add missing gh-pages dependency
afc163 Jun 28, 2026
47626b9
chore: add father config
afc163 Jun 28, 2026
c0c3923
docs: document dumi dev server port
afc163 Jun 28, 2026
887e9d9
chore: standardize husky configuration
afc163 Jun 28, 2026
7de4e1c
docs: align readme badge layout
afc163 Jun 28, 2026
1078197
chore: standardize package type entry
afc163 Jun 28, 2026
587596c
ci: limit reusable workflow secrets
afc163 Jun 28, 2026
66b3639
ci: restore reusable workflow compatibility
afc163 Jun 28, 2026
d8c0b9f
ci: narrow surge preview permissions
afc163 Jun 28, 2026
edb6363
chore: limit reusable workflow secrets
afc163 Jun 29, 2026
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
17 changes: 2 additions & 15 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,2 @@
# These are supported funding model platforms

github: ant-design # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: ant-design # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
polar: # Replace with a single Polar username
buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
thanks_dev: # Replace with a single thanks.dev username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
github: ant-design
open_collective: ant-design
38 changes: 38 additions & 0 deletions .github/workflows/cloudflare-pages-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Cloudflare Pages Preview

on:
pull_request:

permissions:
contents: read
deployments: write

jobs:
preview:
runs-on: ubuntu-latest
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_PAGES_PROJECT: ${{ vars.CLOUDFLARE_PAGES_PROJECT }}
PREVIEW: true
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
with:
persist-credentials: false
- name: Skip Cloudflare Pages preview
if: ${{ env.CLOUDFLARE_API_TOKEN == '' || env.CLOUDFLARE_ACCOUNT_ID == '' || env.CLOUDFLARE_PAGES_PROJECT == '' }}
run: echo "Cloudflare Pages preview is not configured; skip deployment."
- name: Install dependencies
if: ${{ env.CLOUDFLARE_API_TOKEN != '' && env.CLOUDFLARE_ACCOUNT_ID != '' && env.CLOUDFLARE_PAGES_PROJECT != '' }}
run: npm install
- name: Build site
if: ${{ env.CLOUDFLARE_API_TOKEN != '' && env.CLOUDFLARE_ACCOUNT_ID != '' && env.CLOUDFLARE_PAGES_PROJECT != '' }}
run: npm run build
- name: Deploy preview
if: ${{ env.CLOUDFLARE_API_TOKEN != '' && env.CLOUDFLARE_ACCOUNT_ID != '' && env.CLOUDFLARE_PAGES_PROJECT != '' }}
uses: cloudflare/wrangler-action@ebbaa1584979971c8614a24965b4405ff95890e0
with:
apiToken: ${{ env.CLOUDFLARE_API_TOKEN }}
accountId: ${{ env.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy dist --project-name=${{ env.CLOUDFLARE_PAGES_PROJECT }} --branch=${{ github.head_ref }}
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/react-component-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ name: ✅ test
on: [push, pull_request]
jobs:
test:
uses: react-component/rc-test/.github/workflows/test.yml@main
secrets: inherit
uses: react-component/rc-test/.github/workflows/test-utoo.yml@main
secrets: inherit
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
27 changes: 27 additions & 0 deletions .github/workflows/react-doctor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: React Doctor

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
branches: [master]

permissions:
contents: read
pull-requests: write
issues: write
statuses: write

concurrency:
group: react-doctor-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
react-doctor:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
with:
fetch-depth: 0
persist-credentials: false
- uses: millionco/react-doctor@0b4f4f4bd248a154e64eb508a48347f71154b3f3
35 changes: 35 additions & 0 deletions .github/workflows/surge-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Surge Preview

on:
pull_request:

permissions:
contents: read
pull-requests: write
checks: write
statuses: write

jobs:
preview:
runs-on: ubuntu-latest
Comment thread
coderabbitai[bot] marked this conversation as resolved.
env:
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }}
PREVIEW: true
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
with:
persist-credentials: false
- uses: afc163/surge-preview@bf90a5a86111f6311ca42f0a5a0f80fb0fb03cec
if: ${{ env.SURGE_TOKEN != '' }}
with:
surge_token: ${{ env.SURGE_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
dist: dist
failOnError: true
setCommitStatus: true
build: |
npm install
npm run build
- name: Skip Surge preview
if: ${{ env.SURGE_TOKEN == '' }}
run: echo "SURGE_TOKEN is not configured; skip Surge preview."
Loading
Loading