Block 1 - Verify Artifacts
- Type / Role
- n8n-nodes-base.code - code
- Config choices
- Version 2
This workflow is provided as-is. Please review and test before using in production.
CI Artifact Completeness Gate (GitHub Push → Sentry Release Files → Artifact Validation → GitHub Commit Status Update) This workflow acts as a CI/CD quality gate for mobile app crash symbolication ...
n8n-nodes-base.code, n8n-nodes-base.githubtrigger, n8n-nodes-base.httprequest, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by WeblineIndia.
Original n8n.io sourceThis workflow acts as a CI/CD quality gate for mobile app crash-symbolication artifacts. Whenever a new commit is pushed to GitHub, the workflow automatically checks the corresponding Sentry release and confirms whether required build artifacts (dSYM or ProGuard + mapping.txt) exist. If artifacts are complete, it updates the GitHub commit status to success, allowing the PR to be merged. If incomplete, the workflow fails silently (no commit status update), effectively blocking merges.
This workflow ensures your mobile crash-symbolication artifacts are fully present in Sentry for every release.
When a new GitHub push occurs, the workflow:
*.dSYM file exists OR\proguard.txt AND mapping.txt are present\This provides a strong CI gate ensuring symbolication completeness and preventing un-debuggable releases.
The GithubPushTrigger node listens for push events and extracts:
No configuration required except selecting your GitHub credentials.
Open Check Sentry Artifacts Releases and update: https://sentry.io/api/0/projects/<org_slug>/<proj_slug>/releases/
Make sure the Sentry credential is correctly selected.
The next HTTP Request (Check Sentry Artifacts Files) uses a dynamic URL: https://sentry.io/api/0/projects/<org_slug>/<proj_slug>/releases/{{ $json.version }}/files/
Ensure your build pipeline sets version consistently with what Sentry receives.
The Verify Artifacts node runs JS logic to check:
Any file ending with .dSYM
proguard.txt\mapping.txtThe Code node returns:
{ "status": "failure", "description": "Missing artifacts..." }
This stops the workflow and prevents GitHub commit-status update.
The Artifacts Validation and Get Repository Data node compiles:
If validation failed → workflow ends here.
The Update Status node hits:
POST https://api.github.com/repos/<repoFullName>/statuses/<commitSHA>
And sends:
{
"state": "success",
"description": "Artifacts successfully verified."
}
This appears as a green check on your commit/PR.
Turn on the workflow to start enforcing symbolication completeness for all releases.
Edit URLs in both Sentry HTTP Request nodes:
org_slugproj_slugModify JS inside Verify Artifacts, e.g., require:
Edit the request body in Update Status.
Branch logic in:
| Issue | Possible Cause | Solution |
|---|---|---|
| Commit status never updates | Validation failed silently | Check logs from Verify Artifacts |
| "version undefined" in URL | Sentry release list not matched | Ensure your build uploads a valid version |
| 401 from Sentry API | Invalid/broken Sentry token | Regenerate token and update credentials |
| Always failing validation | Artifact names differ (e.g., .dsym.zip) |
Update RegEx patterns in Code node |
| GitHub status API returns 404 | Missing repo permissions | Update GitHub credentials (repo status scope) |
| Files array empty | Build system not uploading artifacts | Verify build → Sentry upload step |
If you need help customizing the artifact rules, integrating multiple platforms or automating Sentry/GitHub workflows, reach out to our n8n automation developers at WeblineIndia. We can assist with:
Happy automating! 🚀
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | CI artifact completeness gate (Git push, Sentry artifact verification, commit) |
|---|---|
| Complexity | intermediate |
| Nodes | 10 |
| Categories | DevOps |
| Author | WeblineIndia |
| Published | 15 Dec 2025 |
Use the JSON export at /data/workflows/11828/11828.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
CI Artifact Completeness Gate (GitHub Push → Sentry Release Files → Artifact Validation → GitHub Commit Status Update) This workflow acts as a CI/CD quality gate for mobile app crash symbolication ...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your DevOps use case.