We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab1f019 commit 5407c5fCopy full SHA for 5407c5f
1 file changed
.github/workflows/nerimity.yml
@@ -0,0 +1,16 @@
1
+name: nerimity notify
2
+
3
+on:
4
+ push:
5
+ branches: ['**']
6
7
+jobs:
8
+ discord:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: send push to nerimity
12
+ run: |
13
+ curl -H "Content-Type: application/json" \
14
+ -X POST \
15
+ -d "{\"content\": \"push: ${{ github.repository }}@${{ github.ref_name }}\ncommit: ${{ github.sha }}\nurl: https://github.com/${{ github.repository }}/commit/${{ github.sha }}\nauthor: ${{ github.actor }}\nmessage: ${{ github.event.head_commit.message }}\"}" \
16
+ ${{ secrets.NERI_WEBHOOK }}
0 commit comments