-
Notifications
You must be signed in to change notification settings - Fork 579
✨ implement ListIssues and GetCreatedAt for Azure DevOps
#4419
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
Merged
spencerschrock
merged 3 commits into
ossf:main
from
JamieMagee:azure-devops-audit-issues
Dec 3, 2024
Merged
✨ implement ListIssues and GetCreatedAt for Azure DevOps
#4419
spencerschrock
merged 3 commits into
ossf:main
from
JamieMagee:azure-devops-audit-issues
Dec 3, 2024
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
Author
|
With these changes the Details |
bb728d3 to
94aad6d
Compare
94aad6d to
dc22d50
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4419 +/- ##
==========================================
+ Coverage 66.80% 68.57% +1.77%
==========================================
Files 230 238 +8
Lines 16602 17768 +1166
==========================================
+ Hits 11091 12185 +1094
+ Misses 4808 4785 -23
- Partials 703 798 +95 |
dc22d50 to
51ab4c8
Compare
spencerschrock
approved these changes
Dec 2, 2024
Member
spencerschrock
left a comment
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.
Thanks!
Signed-off-by: Jamie Magee <[email protected]>
Signed-off-by: Jamie Magee <[email protected]>
Signed-off-by: Jamie Magee <[email protected]>
adac8b0 to
5487fda
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What kind of change does this PR introduce?
(Is it a bug fix, feature, docs update, something else?)
What is the current behavior?
ListIssuesandGetCreatedAtthrow an unsupported errorWhat is the new behavior (if this is a feature change)?**
ListIssuesandGetCreatedAthave implementationsWhich issue(s) this PR fixes
Next step of #4177
Special notes for your reviewer
Azure DevOps doesn't have an official API to retrieve user permissions for a project or a repository. As a stopgap solution, I've defaulted all issue and comment authors to
RepoAssociationMember. This is probably a good minimum bar.The audit log is the best way to retrieve the repository creation date, but this may not be enabled. So I am using the first repository commit as a fallback value.
Does this PR introduce a user-facing change?
For user-facing changes, please add a concise, human-readable release note to
the
release-note(In particular, describe what changes users might need to make in their
application as a result of this pull request.)