Skip to content

chore(deps): bump next from 16.1.2 to 16.1.3 #83

chore(deps): bump next from 16.1.2 to 16.1.3

chore(deps): bump next from 16.1.2 to 16.1.3 #83

Workflow file for this run

name: Preview Deployment
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
preview-info:
name: Preview Information
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Comment PR with deployment info
uses: actions/github-script@v7
with:
script: |
const prNumber = context.issue.number;
const comment = `## 🚀 Preview Deployment
This pull request will be automatically deployed to Vercel.
### Preview Links
- 📝 **Documentation**: Will be available once Vercel deployment completes
- 🌍 **Languages**: English (\`/en/docs\`) and Chinese (\`/cn/docs\`)
### Build Status
Check the CI workflow for build status and any errors.
---
*Automated preview information for PR #${prNumber}*`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: comment
});