python-pillow / Pillow

Python Imaging Library (Fork)
https://python-pillow.org
Other
12.35k stars 2.24k forks source link

Do not run scheduled wheel jobs on forks #8254

Closed Yay295 closed 4 months ago

Yay295 commented 4 months ago

Skip two more wheel builds on schedule, and only run the publish jobs in the main repository.

Fixes #8253.

radarhere commented 4 months ago

Skip two more wheel builds on schedule

Could you explain why you've made this change?

Yay295 commented 4 months ago

I assumed you missed them in https://github.com/lysnikolaou/Pillow/pull/1.

radarhere commented 4 months ago

No, the aarch64 wheels were skipped because they weren't building free threaded wheels, and sdist was skipped because that doesn't build wheels at all.

Yay295 commented 4 months ago

I think I understand it now. This new change should work correctly.

Basically: Don't build anything on schedule unless it's running in this repository.

hugovk commented 4 months ago

Thanks!