Skip to content

Commit

Permalink
bugfix for level 1 grants with 1 milestone
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCaso authored Feb 20, 2023
1 parent b3fc156 commit 025a7a8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/badge_or_last_milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,14 @@ jobs:

comment-last-milestone:
runs-on: ubuntu-latest
# "comment-badge" in needs so we establish the correct messages order
needs: [comment-badge, check-needs-badge]
if: needs.check-needs-badge.outputs.needs_last_milestone_comment
# "always()" will make this job run also if one of the needs is not completed;
# in this way, the last_milestone comment will be sent also if the badge comment wasn't
if: always()
steps:
- name: Last milestone comment
if: needs.check-needs-badge.outputs.needs_last_milestone_comment
uses: thollander/[email protected]
with:
message: >
Expand Down

0 comments on commit 025a7a8

Please sign in to comment.