Skip to content

Commit

Permalink
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pr-notification.yaml
Original file line number Diff line number Diff line change
@@ -26,9 +26,12 @@ jobs:
echo "status=🟢 Open" >> $GITHUB_ENV
fi
- name: Confirm PR_NOTIFICATION Secret is Set
- name: Set PR_NOTIFICATION for Debugging
run: echo "PR_NOTIFICATION=${{ secrets.PR_NOTIFICATION }}" >> $GITHUB_ENV

- name: Check if PR_NOTIFICATION Secret is Set
run: |
if [[ -z "${{ secrets.PR_NOTIFICATION }}" ]]; then
if [[ -z "${PR_NOTIFICATION}" ]]; then
echo "PR_NOTIFICATION secret is not set."
else
echo "PR_NOTIFICATION secret is set."

0 comments on commit 651315c

Please sign in to comment.