Skip to content

Commit

Permalink
Troubleshoot
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Dec 6, 2023
1 parent 9ed839a commit c470a6f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
- uses: actions/checkout@v4
- id: vars
# uses: ./
run: echo "pr=${{ github.event.number }}" >> $GITHUB_OUTPUT
run: |
echo "pr=${{ github.event.number }}"
echo "pr=${{ github.event.number }}" >> $GITHUB_OUTPUT
verify-pr:
name: Verify PR number
Expand All @@ -37,6 +39,8 @@ jobs:
- name: Verify PR number
run: |
set -eux
echo "PR: ${{ steps.vars.outputs.pr }}"
# Check
if [ -z ${{ needs.get-pr.outputs.pr }} ]
then
Expand Down

0 comments on commit c470a6f

Please sign in to comment.