Skip to content

Commit

Permalink
Merge pull request #6243 from shaneknapp/logic-is-hard
Browse files Browse the repository at this point in the history
[DH-301] truly fix the logic
  • Loading branch information
shaneknapp authored Sep 24, 2024
2 parents dd23716 + d693f72 commit a592fc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/determine-hub-deployments.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def main(args):
hubs = []

# Deploy all hubs by getting deployment names from the dirs in deployments/
if "GITHUB_PR_LABEL_JUPYTERHUB_DEPLOYMENT" or \
if "GITHUB_PR_LABEL_JUPYTERHUB_DEPLOYMENT" in os.environ.keys() or \
"GITHUB_PR_LABEL_HUB_IMAGES" in os.environ.keys():
for deployment in next(os.walk(args.deployments))[1]:
if deployment not in args.ignore:
Expand Down

0 comments on commit a592fc4

Please sign in to comment.