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

Finalize release process #356

Closed
6 of 7 tasks
janbuchar opened this issue Jul 24, 2024 · 2 comments · Fixed by #385
Closed
6 of 7 tasks

Finalize release process #356

janbuchar opened this issue Jul 24, 2024 · 2 comments · Fixed by #385
Assignees
Labels
debt Code quality improvement or decrease of technical debt. t-tooling Issues with this label are in the ownership of the tooling team.

Comments

@janbuchar
Copy link
Collaborator

janbuchar commented Jul 24, 2024

@janbuchar janbuchar added t-tooling Issues with this label are in the ownership of the tooling team. debt Code quality improvement or decrease of technical debt. labels Jul 24, 2024
@janbuchar
Copy link
Collaborator Author

janbuchar commented Jul 26, 2024

Here's a way to find issues closed by a PR

gh api graphql --paginate --slurp -F owner='apify' -F repo='crawlee-python' -f query='
query ($owner: String!, $repo: String!, $endCursor: String) {
        repository(owner: $owner, name: $repo) {
                pullRequests(first: 100, after: $endCursor) {
                        nodes {
                                number,
                                closingIssuesReferences(last: 100) {
                                        nodes { number }
                                }
                        }
                        pageInfo {
                                hasNextPage
                                endCursor
                        }
                }
        }
}' | jq '[.[] | .data.repository.pullRequests.nodes ] | flatten[] | {pullRequest: .number, closedIssues: [.closingIssuesReferences.nodes | .[] | .number] }' | jless

@B4nan

This comment was marked as resolved.

@janbuchar janbuchar self-assigned this Jul 31, 2024
@janbuchar janbuchar linked a pull request Aug 1, 2024 that will close this issue
janbuchar added a commit that referenced this issue Aug 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
debt Code quality improvement or decrease of technical debt. t-tooling Issues with this label are in the ownership of the tooling team.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants