We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 097aa72 commit 13c3375Copy full SHA for 13c3375
1 file changed
.github/workflows/maven.yml
@@ -35,3 +35,17 @@ 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
+ notify:
40
+ needs: [build]
41
+ if: failure() && github.ref == 'refs/heads/main'
42
+ uses: embabel/embabel-build/.github/workflows/discord-notify.yml@main
43
+ secrets: inherit
44
45
+ notify-recovery:
46
47
+ if: success() && github.ref == 'refs/heads/main'
48
+ uses: embabel/embabel-build/.github/workflows/notify-recovery.yml@main
49
+ with:
50
+ branch: main
51
0 commit comments