We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It appears that this code https://github.com/SuLab/scheduled-bots/blob/master/scheduled_bots/talk_jenkins/run.py is designed to update this WD talk page https://www.wikidata.org/wiki/User:ProteinBoxBot/Bot_Status. But it looks like it hasn't been run in quite some time. And I can already see at least one minor change in the code that would need to be made:
jobs = server.get_jobs(view_name="Running")
changed to
jobs = server.get_jobs(view_name="PRODUCTION").
jobs = server.get_jobs(view_name="PRODUCTION")
But this code needs to be properly debugged and tested, and then put on a schedule (in jenkins itself?)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It appears that this code https://github.com/SuLab/scheduled-bots/blob/master/scheduled_bots/talk_jenkins/run.py is designed to update this WD talk page https://www.wikidata.org/wiki/User:ProteinBoxBot/Bot_Status. But it looks like it hasn't been run in quite some time. And I can already see at least one minor change in the code that would need to be made:
jobs = server.get_jobs(view_name="Running")
changed to
jobs = server.get_jobs(view_name="PRODUCTION")
.But this code needs to be properly debugged and tested, and then put on a schedule (in jenkins itself?)
The text was updated successfully, but these errors were encountered: