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 f01751e commit a89cfb5Copy full SHA for a89cfb5
.github/workflows/pr_metadata_check.yml
@@ -26,9 +26,11 @@ jobs:
26
exit 1
27
28
empty_pr_description:
29
- - name: Check for PR description
30
- if: ${{ github.event.pull_request.body == '' }}
31
- id: pr_description
32
- run: |
33
- echo "Pull request description cannot be empty."
34
- exit 1
+ if: ${{ github.event.pull_request.body == '' }}
+ name: PR Description
+ runs-on: ubuntu-22.04
+ steps:
+ - name: Check for PR description
+ run: |
35
+ echo "Pull request description cannot be empty."
36
+ exit 1
0 commit comments