We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b42556 commit 7a76f3aCopy full SHA for 7a76f3a
.github/workflows/compile-examples-private.yml
@@ -67,10 +67,8 @@ jobs:
67
68
report-size-deltas:
69
needs: build
70
- if: >
71
- always() && # Run even if some compilations failed.
72
- github.event_name == 'pull_request' &&
73
- github.event.pull_request.head.repo.full_name == github.repository # Only run when there are write permissions.
+ # Run even if some compilations failed. Only run when there are write permissions.
+ if: always() && github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
74
runs-on: ubuntu-latest
75
76
steps:
0 commit comments