Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .github/workflows/ci-perf-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
mkdir -p temp/perf-meta
echo "${{ github.event.number }}" > temp/perf-meta/number.txt
echo "${{ github.event.pull_request.base.ref }}" > temp/perf-meta/base.txt
echo "${{ github.event.pull_request.head.sha }}" > temp/perf-meta/head-sha.txt

- name: Upload PR metadata
if: github.event_name == 'pull_request'
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/ci-size-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
branches:
- main

concurrency:
group: size-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

Expand All @@ -28,11 +32,12 @@ jobs:
- name: Collect size data
run: node scripts/size-collect.js

- name: Save PR number & base branch
- name: Save PR metadata
if: ${{ github.event_name == 'pull_request' }}
run: |
echo ${{ github.event.number }} > ./temp/size/number.txt
echo ${{ github.base_ref }} > ./temp/size/base.txt
echo ${{ github.event.pull_request.head.sha }} > ./temp/size/head-sha.txt

- name: Upload size data
uses: actions/upload-artifact@v6
Expand Down
148 changes: 0 additions & 148 deletions .github/workflows/pr-perf-report.yaml

This file was deleted.

Loading
Loading