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 162cbfc commit 7584614Copy full SHA for 7584614
.github/workflows/pypi.yml
@@ -41,10 +41,11 @@ jobs:
41
id: set_should_run
42
run: |
43
if [[ "${{ github.event_name == 'release' ||
44
+ github.ref == 'refs/heads/main' ||
45
(
- github.ref == 'refs/heads/main' ||
46
- github.event_name == 'pull_request'
47
- ) && steps.filter.outputs.any_changed == 'true'
+ github.event_name == 'pull_request'
+ && steps.filter.outputs.any_changed == 'true'
48
+ )
49
}}" == "true" ]]; then
50
echo "should_run=true" >> $GITHUB_OUTPUT
51
else
0 commit comments