Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: run rst2myst #684

Merged
merged 3 commits into from Nov 28, 2022
Merged

Conversation

consideRatio
Copy link
Member

@consideRatio consideRatio commented Nov 26, 2022

No open PRs should have conflicts with this as verified by checking for changes to rST files in open PRs, using a script @minrk created.

# pip install pygithub
from github import Github as GitHub

gh = GitHub()

repo = gh.get_repo("jupyterhub/kubespawner")
for pull in repo.get_pulls(state="open"):
    pull_files = [f.filename for f in list(pull.get_files())]
    if any(f.endswith(".rst") for f in pull_files):
        print(f"- [ ] #{pull.number}:")
        for f in pull_files:
            if f.endswith(".rst"):
                print(f"  - {f}")
        continue

Copy link
Member

@GeorgianaElena GeorgianaElena left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @consideRatio 🚀 !

@GeorgianaElena GeorgianaElena merged commit 32c10cd into jupyterhub:main Nov 28, 2022
@consideRatio
Copy link
Member Author

Thank you for the merge @GeorgianaElena!!! ❤️ 🎉 🌻!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants