You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The previous condition is necessary in repositories where the "Run workflows from fork pull requests" setting is enabled
and the "Send write tokens to workflows from fork pull requests" setting is disabled, explained in more detail here:
https://github.com/arduino/report-size-deltas#run-from-the-same-workflow-as-the-arduinocompile-sketches-action
However, this repository does not have the "Run workflows from fork pull requests" setting enabled, so the extra
condition is superflous and only makes the workflow more difficult to understand and maintain.
Copy file name to clipboardExpand all lines: .github/workflows/compile-examples.yml
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -108,8 +108,7 @@ jobs:
108
108
109
109
report-size-deltas:
110
110
needs: compile-test
111
-
# Only run the job when the workflow is triggered by a pull request from this repository (because arduino/report-size-deltas requires write permissions)
0 commit comments