pull/4693/merge
Okinea Dev 3 weeks ago committed by GitHub
commit 3e78784acc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,4 +1,4 @@
name: Add continuous release label name: 🔖 Add continuous release label
on: on:
issue_comment: issue_comment:

@ -1,8 +1,10 @@
name: CR name: 🔄 CR
env: env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1' PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
permissions: {}
on: on:
pull_request: pull_request:
branches: [main] branches: [main]
@ -26,8 +28,6 @@ on:
tags-ignore: tags-ignore:
- '*' - '*'
permissions: {}
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.number }} group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true cancel-in-progress: true
@ -38,12 +38,25 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - name: 📥 Checkout
- uses: pnpm/action-setup@v3 uses: actions/checkout@v4
- uses: actions/setup-node@v4 with:
persist-credentials: false
- name: 📦 Setup pnpm
uses: pnpm/action-setup@v3
- name: 🛠️ Setup Node.js
uses: actions/setup-node@v4
with: with:
node-version: 22 node-version: 22
cache: pnpm cache: pnpm
- run: pnpm install
- run: pnpm build - name: 📦 Install dependencies
- run: npx pkg-pr-new publish --compact --no-template --pnpm run: pnpm install --frozen-lockfile
- name: 🛠️ Build
run: pnpm build
- name: 🚀 Publish Package
run: npx pkg-pr-new publish --compact --no-template --pnpm

@ -1,4 +1,4 @@
name: Lock Threads name: 🔒 Lock Threads
on: on:
schedule: schedule:

@ -1,4 +1,6 @@
name: Release name: 🚀 Release
permissions: {}
on: on:
push: push:
@ -11,15 +13,11 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: 🔖 Create Release for Tag
uses: actions/checkout@v4
- name: Create Release for Tag
id: release_tag id: release_tag
uses: yyx990803/release-tag@master uses: yyx990803/release-tag@master
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
tag_name: ${{ github.ref }} tag_name: ${{ github.ref }}
body: | body: Please refer to [CHANGELOG.md](https://github.com/${{ github.repository }}/blob/main/CHANGELOG.md) for details.
Please refer to [CHANGELOG.md](https://github.com/${{ github.repository }}/blob/main/CHANGELOG.md) for details.

@ -1,4 +1,9 @@
name: Close stale issues and PRs name: ⛔ Close stale issues and PRs
permissions:
issues: write
pull-requests: write
on: on:
workflow_dispatch: workflow_dispatch:

@ -1,4 +1,4 @@
name: Test name: 🧪 Test
on: on:
push: push:
@ -26,25 +26,27 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- name: Checkout - name: 📥 Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install pnpm - name: 📦 Install pnpm
uses: pnpm/action-setup@v3 uses: pnpm/action-setup@v3
- name: Set node version to ${{ matrix.node_version }} - name: 🛠️ Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: ${{ matrix.node_version }} node-version: ${{ matrix.node_version }}
cache: pnpm cache: pnpm
- name: Install deps - name: 📦 Install dependencies
run: pnpm install run: pnpm install
env: env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- name: Install Playwright - name: 🎭 Install Playwright
run: pnpm playwright install chromium run: pnpm playwright install chromium
- name: Check - name: Check
run: pnpm check run: pnpm check

@ -19,7 +19,7 @@ Detailed changes for each release are documented in the [CHANGELOG](https://gith
## Contribution ## Contribution
Please make sure to read the [Contributing Guide](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md) before making a pull request. Please make sure to read the [Contributing Guide](https://github.com/vuejs/vitepress/blob/main/contributing.md) before making a pull request.
## License ## License

Loading…
Cancel
Save