i18n(perf-issues): translate all issue titles and bodies from Chinese… #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Create Performance Optimization Issues | |
| # Trigger manually from the GitHub Actions tab (Actions → Create Performance | |
| # Optimization Issues → Run workflow). | |
| # Each run is idempotent: it skips any issue whose title already exists. | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - copilot/analyze-project-performance-optimization | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| create-issues: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const fn = require('./.github/scripts/create-perf-issues.js'); | |
| await fn({ github, context, core }); |