CI/CD Pipeline Notifications
Get push notifications when builds succeed, fail, or deployments go live. Works with GitHub Actions, GitLab CI, Jenkins, CircleCI, and any CI system.
Stop refreshing your CI dashboard. notfs sends a push notification to your phone the moment a build finishes — whether it passes or fails. Add a single curl command to your pipeline and get instant alerts with the commit message, branch name, and build status.
# GitHub Actions — notify on build result
- name: Notify via notfs
if: always()
run: |
STATUS=${{ job.status }}
curl -s -X POST https://api.notfs.dev/api/notifications \
-H "X-API-Key: ${{ secrets.NOTFS_API_KEY }}" \
-H "Content-Type: application/json" \
-d "{
\"title\": \"Build $STATUS — ${{ github.ref_name }}\",
\"body\": \"${{ github.event.head_commit.message }}\",
\"priority\": \"$( [ \"$STATUS\" = \"failure\" ] && echo critical || echo normal )\",
\"delay\": \"5s\"
}"