{"id":46129670,"url":"https://github.com/systemic-engineering/ci","last_synced_at":"2026-03-02T03:17:56.769Z","repository":{"id":338258536,"uuid":"1157218256","full_name":"systemic-engineering/ci","owner":"systemic-engineering","description":"Reusable GitHub Actions for Elixir projects","archived":false,"fork":false,"pushed_at":"2026-02-19T01:15:46.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-19T16:20:31.155Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/systemic-engineering.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-02-13T15:12:46.000Z","updated_at":"2026-02-19T08:13:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/systemic-engineering/ci","commit_stats":null,"previous_names":["systemic-engineer/ci","systemic-engineering/ci"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/systemic-engineering/ci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/systemic-engineering%2Fci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/systemic-engineering%2Fci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/systemic-engineering%2Fci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/systemic-engineering%2Fci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/systemic-engineering","download_url":"https://codeload.github.com/systemic-engineering/ci/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/systemic-engineering%2Fci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29991399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"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":[],"created_at":"2026-03-02T03:17:56.683Z","updated_at":"2026-03-02T03:17:56.756Z","avatar_url":"https://github.com/systemic-engineering.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# systemic-engineer/ci\n\nReusable GitHub Actions workflows for repos maintained by Reed (systemic.engineering).\n\n## OBC Mapping\n\nThese workflows are the GitHub Actions expression of OBC pipeline logic:\n\n| OBC concept | GitHub Actions equivalent |\n|---|---|\n| Observable | Push / pull_request trigger |\n| Budget | Quality gate exit code (`mix check`, `just check`) |\n| on_pass | Status check green → PR merges |\n| on_fail | Status check red → PR blocked + Ntfy alert to Reed |\n\nThe judgment encoded in OBC pipelines becomes the gate on every PR.\n\n## Workflows\n\n### `check.yml` — Generic quality gate\n\nCalls any `check_command` (default: `just check`). Use for any stack.\n\n```yaml\njobs:\n  call-check:\n    uses: systemic-engineer/ci/.github/workflows/check.yml@main\n    with:\n      check_command: 'just check'\n```\n\n### `elixir-check.yml` — Elixir quality gate\n\nSets up Elixir + OTP, caches deps and _build, runs `mix check`.\nJob name is `check` — matches the branch protection context.\n\n```yaml\njobs:\n  call-check:\n    uses: systemic-engineer/ci/.github/workflows/elixir-check.yml@main\n    with:\n      elixir_version: '1.17'\n      otp_version: '27'\n```\n\n### `notify-ntfy.yml` — OBC on_fail cascade\n\nFires when a check fails. Sends to Reed via Ntfy `se-ci` topic for triage.\n\n```yaml\njobs:\n  notify:\n    if: failure()\n    needs: [call-check]\n    uses: systemic-engineer/ci/.github/workflows/notify-ntfy.yml@main\n    with:\n      repo: ${{ github.repository }}\n      workflow: ${{ github.workflow }}\n      run_url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}\n    secrets:\n      NTFY_TOKEN: ${{ secrets.NTFY_TOKEN }}\n```\n\n## Full Example\n\n`.github/workflows/ci.yml` in a maintained Elixir repo:\n\n```yaml\nname: CI\n\non:\n  push:\n    branches: [main]\n  pull_request:\n\njobs:\n  call-check:\n    uses: systemic-engineer/ci/.github/workflows/elixir-check.yml@main\n    with:\n      elixir_version: '1.17'\n      otp_version: '27'\n\n  notify-on-failure:\n    if: failure()\n    needs: [call-check]\n    uses: systemic-engineer/ci/.github/workflows/notify-ntfy.yml@main\n    with:\n      repo: ${{ github.repository }}\n      workflow: ${{ github.workflow }}\n      run_url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}\n    secrets:\n      NTFY_TOKEN: ${{ secrets.NTFY_TOKEN }}\n```\n\n## Branch Protection\n\nThe `just setup` recipe in each maintained repo configures branch protection to\nrequire the `check` job to pass before merging. Job names in these workflows\nmatch that expectation exactly.\n\n## License\n\nSystemic Engineering License v1.0 — see LICENSE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsystemic-engineering%2Fci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsystemic-engineering%2Fci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsystemic-engineering%2Fci/lists"}