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 6f35969 commit fa9d0f9Copy full SHA for fa9d0f9
.github/workflows/ci.yml
@@ -35,6 +35,14 @@ jobs:
35
outputs:
36
provider: ${{ steps.runners.outputs.provider }}
37
steps:
38
+ - name: Annotate with pull request number
39
+ # This annotation is machine-readable and can be used to assign a check
40
+ # run to its corresponding pull request. Running in one check run is
41
+ # sufficient for each check suite.
42
+ run: |
43
+ if [ "${{ github.event_name }}" = "pull_request" ]; then
44
+ echo "::notice title=debug_pull_request_number_str::${{ github.event.number }}"
45
+ fi
46
- id: runners
47
run: |
48
if [[ "${REPO_USE_CIRRUS_RUNNERS}" == "${{ github.repository }}" ]]; then
0 commit comments