Skip to content

Commit

Permalink
Make update stable branch optional
Browse files Browse the repository at this point in the history
  • Loading branch information
adiroiban committed Sep 3, 2022
1 parent 47fe355 commit a8cd914
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yaml
Expand Up @@ -426,7 +426,6 @@ jobs:
- apidocs
- static-checks
- release-publish
- update-stable-branch
steps:
- name: Require all successes
shell: python
Expand All @@ -437,4 +436,4 @@ jobs:
import os
import sys
results = json.loads(os.environ["RESULTS"])
sys.exit(0 if all(result in ["success", "skipped"] for result in results) else 1)
sys.exit(0 if all(result == "success" for result in results) else 1)

0 comments on commit a8cd914

Please sign in to comment.