To find the last PR you worked on, you can check your GitHub profile or repository activity. Here’s how to do it:
- GitHub Profile: Go to your GitHub profile and click on the 'Pull requests' tab to see all PRs you’ve participated in.
- Repository Activity: Navigate to the repository you were working on, and check the 'Pull requests' section to see the ones you’ve created or commented on.
- Command Line: If you have the GitHub CLI installed, you can run the following command in your terminal:
This will list all PRs authored by you.
gh pr list --author <your-github-username>