-
Notifications
You must be signed in to change notification settings - Fork 2
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
Inconsistencies of icons includes in releases and release notes #83
Inconsistencies of icons includes in releases and release notes #83
Comments
I've manually updated release notes. |
The Google Chronicle was added in https://cdn.jsdelivr.net/npm/[email protected]/icons/googlechronicle.svg. I created this 11.8.0 release note manually; I may have missed something on my local. Here is the code how fetching PRs: const { data: prs } = await client.rest.pulls.list({
owner: context.repo.owner,
repo: context.repo.repo,
state: 'closed',
sort: 'updated',
direction: 'desc',
per_page: perPage,
page,
}); Pull request order may changed by our comment, re-title, and other actions. Here is a similar pull request: I think our For example: query {
repository(owner: "simple-icons", name: "simple-icons") {
defaultBranchRef {
target {
... on Commit {
history(first: 20) {
edges {
node {
oid
message
associatedPullRequests(first: 1) {
edges {
node {
title
url
number
}
}
}
}
}
}
}
}
}
}
} |
The text was updated successfully, but these errors were encountered: