-
Notifications
You must be signed in to change notification settings - Fork 20
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
feat: automatically fill closed or merged date in project #344
Conversation
Thanks for the pull request, @navinkarkera! This repository is currently maintained by Once you've gone through the following steps feel free to tag them in a comment and let them know that your changes are ready for engineering review. 🔘 Get product approvalIf you haven't already, check this list to see if your contribution needs to go through the product review process.
🔘 Provide contextTo help your reviewers and other members of the community understand the purpose and larger context of your changes, feel free to add as much of the following information to the PR description as you can:
🔘 Get a green buildIf one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green. Where can I find more information?If you'd like to get more details on all aspects of the review process for open source pull requests (OSPRs), check out the following resources: When can I expect my changes to be merged?Our goal is to get community contributions seen and reviewed as efficiently as possible. However, the amount of time that it takes to review and merge a PR can vary significantly based on factors such as:
💡 As a result it may take up to several weeks or months to complete a review and merge your PR. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #344 +/- ##
==========================================
+ Coverage 89.72% 89.81% +0.09%
==========================================
Files 38 38
Lines 3026 3054 +28
Branches 229 234 +5
==========================================
+ Hits 2715 2743 +28
Misses 279 279
Partials 32 32 ☔ View full report in Codecov by Sentry. |
""" | ||
for project in self.current.github_projects_info: | ||
if ( | ||
project["org"] == settings.GITHUB_OSPR_PROJECT[0] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So the previous version of this would support having multiple desired projects that could be updated but it looks like now we're just hardcoding it so that even thought the setting is a list, we only accept the first item in the list as a valid project? Am I understanding this correctly?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aeed55c
to
07d2a61
Compare
07d2a61
to
01af195
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@navinkarkera I think this makes sense to me. Can you squash and cleanup your commits and I'll deploy to the staging environment, test and merge and deploy to production if it looks good.
01af195
to
8f36619
Compare
@feanil Done. |
This is now deployed to production, Thanks @navinkarkera |
Thanks a lot @navinkarkera and @feanil 🚀 |
Automatically adds closed/merged date to project item for a PR on close/merge.
Test instructions
GITHUB_PERSONAL_TOKEN=<your_token>
andGITHUB_OSPR_PROJECT="openedx:19"
environment variables.Date merged/closed
field in OSPR project board, you can use my PRopenedx_webhooks/tasks/pr_tracking.py
to make the process faster.openedx_webhooks/tasks/pr_tracking.py
file and execute it.Date merged/closed
field info for the PR was added to OSPR board.