Skip to content

Commit

Permalink
Merge pull request #973 from OpenLiberty/staging
Browse files Browse the repository at this point in the history
Merge staging to prod: skip to test guide-okd
  • Loading branch information
gkwan-ibm authored Oct 18, 2023
2 parents a45b16d + 1757052 commit 2cd5134
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/get-repos.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

BASE_REPO_URL = "https://api.github.com/orgs/OpenLiberty/repos"
JSON_PATH = ".github/workflows/drafts-to-test.json"

DEPRECATED = [ "guide-okd" ]
HEADERS = {
"Accept": "application/vnd.github.v3+json"
}
Expand All @@ -27,7 +27,8 @@ def published_guide_name(name):
for repo in r.json():
repo_name = repo["name"]
if published_guide_name(repo_name):
output.append(repo_name)
if repo_name not in DEPRECATED:
output.append(repo_name)

drafts = json.load(open(JSON_PATH))
output += drafts
Expand Down

0 comments on commit 2cd5134

Please sign in to comment.