1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-29 17:24:35 +02:00
This commit is contained in:
syuilo
2026-06-21 20:40:15 +09:00
parent da518ae5db
commit 473da816f5
4 changed files with 182 additions and 4 deletions

View File

@@ -23,6 +23,11 @@ jobs:
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
steps:
- name: Checkout report generator
uses: actions/checkout@v6.0.2
with:
persist-credentials: false
- name: Download visualizer report
uses: actions/download-artifact@v8
with:
@@ -32,6 +37,9 @@ jobs:
repository: ${{ github.repository }}
run-id: ${{ github.event.workflow_run.id }}
- name: Generate visualizer report
run: node .github/scripts/frontend-bundle-visualizer-report.mjs "$RUNNER_TEMP/frontend-bundle-visualizer/stats.json" "$RUNNER_TEMP/frontend-bundle-visualizer/report.md"
- name: Comment on pull request
uses: actions/github-script@v9
with: