We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4e584d commit 3cfa001Copy full SHA for 3cfa001
.github/workflows/OnMerge.yml
@@ -12,7 +12,17 @@ on:
12
- 'LICENSE'
13
- 'tsc/**'
14
15
+env:
16
+ CHATROOM: ${{ secrets.TRIGGER_RATS_CHATROOM }}
17
+
18
jobs:
19
+ MergeMessage:
20
+ runs-on: EL9
21
+ steps:
22
+ - name: Report to Chat Room
23
+ run: |
24
+ curl -X POST -H 'Content-Type: application/json' --url ${CHATROOM} \
25
+ -d '{"text": "A push to the main branch of the $(basename ${{ github.repository }}) repo. A CI/RaTS test run should start in the next 5 minutes."}'
26
MergeAction:
27
uses: dwanim/openmoonray/.github/workflows/SubmoduleUpdate.yml@main
28
with:
0 commit comments