We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e221eeb commit 897a890Copy full SHA for 897a890
.github/workflows/ci.yaml
@@ -28,8 +28,9 @@ jobs:
28
- name: Run tests
29
run: mvn test
30
31
- - name: Count commits
+ - name: Send a notifiction on the Discord server
32
run: |
33
- git fetch --prune --unshallow || true
34
- touch .github/stats/commits.md
35
- git rev-list --count HEAD > .github/stats/commits.md
+ curl -H "Content-Type: application/json" \
+ -d '{"username": "GitHub Bot", "content": "### New commit on main branch\nRepository: '${{ github.repository }}'\nCommit: '${{ github.sha }}'\nActor: '${{github.actor}}'"}' \
+ ${{ https://discord.com/api/webhooks/1431847084423643259/MShZSYYVr0NEWEMxtebAzrstOMoxQXCceRciBmEExgRj3cg95RBi61V_LFYdJkQgcQkD }}
36
+
0 commit comments