We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61360ea commit 177c009Copy full SHA for 177c009
.github/workflows/codebuild-pr-build.yml
@@ -89,3 +89,17 @@ jobs:
89
path: |
90
~/.docker-images.tar
91
key: docker-cache-${{ runner.os }}
92
+
93
+ - name: Save PR info for PR Linter
94
+ if: github.event_name == 'pull_request'
95
+ run: |
96
+ mkdir -p ./pr
97
+ echo ${{ github.event.pull_request.number }} > ./pr/pr_number
98
+ echo ${{ github.event.pull_request.head.sha }} > ./pr/pr_sha
99
100
+ - name: Upload PR info artifact
101
102
+ uses: actions/upload-artifact@v5
103
+ with:
104
+ name: pr_info
105
+ path: pr/
0 commit comments