We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42c6c2d commit be01d8bCopy full SHA for be01d8b
1 file changed
.github/workflows/maven.yml
@@ -35,3 +35,21 @@ jobs:
35
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
36
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
37
run: mvn -U -B test verify
38
+
39
+ # Build Failure Notification
40
+ notify:
41
+ needs: [build]
42
+ if: failure() && github.ref == 'refs/heads/main'
43
+ uses: embabel/embabel-build/.github/workflows/discord-notify.yml@main
44
+ secrets: inherit
45
46
+ # Build Sucess Notification
47
+ notify-recovery:
48
49
+ if: success() && github.ref == 'refs/heads/main'
50
+ uses: embabel/embabel-build/.github/workflows/notify-recovery.yml@main
51
+ with:
52
+ branch: main
53
+ caller_run_id: ${{ github.run_id }}
54
55
0 commit comments