Skip to content

Commit

Permalink
yet another try 3
Browse files Browse the repository at this point in the history
Signed-off-by: Alfredo Gutierrez <[email protected]>
  • Loading branch information
AlfredoG87 committed Jul 30, 2024
1 parent 7830d32 commit 62c6b64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-formatting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Check Milestone
id: milestone-check
run: |
if [[ "${{ github.event.pull_request.milestone }}" == "null" ]]; then
if [[ "${{ github.event.pull_request.milestone }}" == "" ]]; then
echo "Milestone is not set. Setting failure."
echo "MILESTONE_CHECK_FAILED=true" >> $GITHUB_ENV
fi
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Check Assignee
id: assignee-check
run: |
if [[ "${{ github.event.pull_request.assignees }}" == "[]" ]]; then
if [[ "${{ github.event.pull_request.assignees[1] }}" == "" ]]; then
echo "Assignee is not set. Setting failure."
echo "ASSIGNEE_CHECK_FAILED=true" >> $GITHUB_ENV
fi
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Check Labels
id: label-check
run: |
if [[ "${{ github.event.pull_request.labels }}" == "[]" ]]; then
if [[ "${{ github.event.pull_request.labels[1] }}" == "" ]]; then
echo "No labels are set. Setting failure."
echo "LABEL_CHECK_FAILED=true" >> $GITHUB_ENV
fi
Expand Down

0 comments on commit 62c6b64

Please sign in to comment.