We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2943dee commit 18e4196Copy full SHA for 18e4196
1 file changed
.github/workflows/post-release.yml
@@ -16,6 +16,15 @@ jobs:
16
uses: actions/checkout@v4
17
with:
18
ref: rc/${{ inputs.version }}
19
+
20
+ - name: Checkout PR
21
+ env:
22
+ GITHUB_TOKEN: ${{ github.token }}
23
+ RELEASE_VERSION: ${{ inputs.version }}
24
+ run: |
25
+ pr_number=$(gh pr list --json number,title --jq "map(select(.title == \"Release v$RELEASE_VERSION\")) | .[].number")
26
+ gh pr checkout $pr_number
27
28
- name: Install Python
29
uses: actions/setup-python@v4
30
0 commit comments