Skip to content

ci: fix build-head size failure for forks #705

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
fb88def
ci: fix build-head siize failure for forks
schirrel Jan 26, 2025
ec73171
Merge branch 'main' into ci/build-head-failure-for-forks
schirrel Jan 26, 2025
6a7e2d7
Merge branch 'main' into ci/build-head-failure-for-forks
schirrel Jan 27, 2025
a5e9780
chore: try explicit name
danielroe Jan 28, 2025
f5478ea
chore: try removing permissions
danielroe Jan 28, 2025
002c060
chore: remove ref
danielroe Jan 28, 2025
07bee45
chore: add back `pull_request_target`
danielroe Jan 28, 2025
febbde7
Merge branch 'main' into ci/build-head-failure-for-forks
schirrel Jan 29, 2025
8fd1e23
Merge branch 'main' into ci/build-head-failure-for-forks
schirrel Jan 30, 2025
c51c9fb
Merge branch 'main' into ci/build-head-failure-for-forks
danielroe Feb 4, 2025
e6aeac5
Update .github/workflows/size.yml
danielroe Feb 4, 2025
c217f75
ci: add repository
schirrel Feb 5, 2025
08b0eb5
ci: using sha instead of ref like in rollupcomparesize example for fork
schirrel Feb 5, 2025
2aaa3c1
ci: testing conditional for ref
schirrel Feb 5, 2025
bc1e789
Merge branch 'main' into ci/build-head-failure-for-forks
danielroe Feb 5, 2025
74d6425
Merge branch 'main' into ci/build-head-failure-for-forks
danielroe Feb 5, 2025
10ca2f2
Merge branch 'main' into ci/build-head-failure-for-forks
danielroe Feb 5, 2025
a9924ef
Merge branch 'main' into ci/build-head-failure-for-forks
schirrel Feb 6, 2025
0028062
Merge branch 'main' into ci/build-head-failure-for-forks
schirrel Feb 7, 2025
bcd6fcd
Merge branch 'main' into ci/build-head-failure-for-forks
schirrel Mar 4, 2025
46554b4
ci: testing using ref and repo again
schirrel Mar 4, 2025
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
3 changes: 2 additions & 1 deletion .github/workflows/size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
ref: ${{ github.event.pull_request.head.sha }}
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- run: npm i -g --force corepack && corepack enable
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
Expand Down
Loading