{"id":51438550,"url":"https://github.com/nerve-ink/nerveops-action","last_synced_at":"2026-07-05T09:30:24.825Z","repository":{"id":368272503,"uuid":"1270720281","full_name":"nerve-ink/nerveops-action","owner":"nerve-ink","description":"GitHub Action for encrypted NerveOps CI/CD signals","archived":false,"fork":false,"pushed_at":"2026-06-29T19:40:55.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-29T21:24:49.819Z","etag":null,"topics":["alerts","cicd","devops","encrypted-alerts","github-actions","iphone","ops"],"latest_commit_sha":null,"homepage":"https://nerve.ink","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nerve-ink.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-16T01:46:32.000Z","updated_at":"2026-06-29T19:40:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/nerve-ink/nerveops-action","commit_stats":null,"previous_names":["nerve-ink/nerveops-action"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/nerve-ink/nerveops-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nerve-ink%2Fnerveops-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nerve-ink%2Fnerveops-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nerve-ink%2Fnerveops-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nerve-ink%2Fnerveops-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nerve-ink","download_url":"https://codeload.github.com/nerve-ink/nerveops-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nerve-ink%2Fnerveops-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35150062,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-05T02:00:06.290Z","response_time":100,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alerts","cicd","devops","encrypted-alerts","github-actions","iphone","ops"],"created_at":"2026-07-05T09:30:23.522Z","updated_at":"2026-07-05T09:30:24.816Z","avatar_url":"https://github.com/nerve-ink.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# NerveOps GitHub Action\n\nSend encrypted CI/CD signals from GitHub Actions to NerveOps.\n\n[Website](https://nerve.ink) · [App Store](https://apps.apple.com/us/app/nerveops/id6778026992) · [Google Play](https://play.google.com/store/apps/details?id=ink.nerve.app\u0026pcampaignid=web_share) · [CLI](https://github.com/nerve-ink/nerve-cli)\n\nThis action is a thin wrapper around [`nerve send`](https://github.com/nerve-ink/nerve-cli).\nIt installs the public Nerve CLI, encrypts the message locally with your sender\nDSN, and sends ciphertext to the Nerve relay.\n\n## Start with failure alerts\n\n1. Install NerveOps from the\n   [App Store](https://apps.apple.com/us/app/nerveops/id6778026992) or\n   [Google Play](https://play.google.com/store/apps/details?id=ink.nerve.app\u0026pcampaignid=web_share).\n2. Create a pipe in the NerveOps app.\n3. Open pipe setup.\n4. Copy the sender DSN.\n5. Store it as a repository or organization secret named `NERVE_DSN`.\n6. Add this step after your build/test/deploy steps:\n\n```yaml\n- name: Notify NerveOps on failure\n  if: failure()\n  uses: nerve-ink/nerveops-action@v1\n  with:\n    dsn: ${{ secrets.NERVE_DSN }}\n    title: CI failed\n    severity: critical\n    message: |\n      FAILED: ${{ github.repository }}\n      ref: ${{ github.ref_name }}\n      sha: ${{ github.sha }}\n      run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}\n```\n\n## Deploy notification\n\n```yaml\n- name: Notify NerveOps\n  uses: nerve-ink/nerveops-action@v1\n  with:\n    dsn: ${{ secrets.NERVE_DSN }}\n    title: Backend Deploy\n    severity: standard\n    message: |\n      deploy ${{ job.status }}\n      repo: ${{ github.repository }}\n      sha: ${{ github.sha }}\n      run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}\n```\n\n## Inputs\n\n| Input | Required | Default | Description |\n| --- | --- | --- | --- |\n| `dsn` | yes | | Sender DSN copied from the NerveOps app. Use a GitHub secret. |\n| `message` | no | GitHub Actions summary | Signal body. Keep it short. |\n| `title` | no | `GitHub Actions` | Short title shown in NerveOps clients. |\n| `severity` | no | `standard` | `standard`, `alert`, or `critical`. |\n| `kind` | no | `alert` | Signal kind metadata. |\n| `install-url` | no | `https://nerve.ink/install.sh` | Nerve CLI installer URL. |\n\n## Security boundary\n\nUse a sender DSN for GitHub Actions. A sender DSN can send into one pipe, but it\ncannot read history, decrypt content, connect as an agent, or execute commands.\n\nDo not send full logs or secrets. Send short operational context: repository,\nbranch/environment, status, commit SHA, and run URL.\n\n## When not to use this action\n\nDo not use this action as a monitoring platform, chat system, or remote command\nrunner. It is for one-way encrypted operational signals.\n\nFor signed actions on a machine you control, use\n[`nerve-agent`](https://github.com/nerve-ink/nerve-agent) explicitly.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnerve-ink%2Fnerveops-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnerve-ink%2Fnerveops-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnerve-ink%2Fnerveops-action/lists"}