Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
claude/adoring-hopper-5x74bqclaude/affectionate-feynman-ykrf1hclaude/architecture-audit-design-wxprenclaude/build-status-update-3MXsfclaude/charming-meitner-mllb5rclaude/compare-gate-gluecron-s4mFQclaude/confident-faraday-tikcwbclaude/continue-work-XMTlIclaude/crontech-gluecron-deploy-7MIECclaude/crontech-platform-setup-SeKfwclaude/design-2026claude/ecstatic-ptolemy-jMdigclaude/enhance-github-integration-QNHdGclaude/fix-aa-loop-issue-PonMQclaude/fix-actions-and-processclaude/fix-desktop-errors-XqoW8claude/fix-red-workflowsclaude/fix-website-access-6FKJNclaude/gatetest-integration-hardeningclaude/github-audit-improvements-bDFr9claude/gluecron-launch-status-FoMRlclaude/hopeful-lamport-olfCTclaude/issue-to-pr-and-protectionsclaude/jolly-heisenberg-2sg1Qclaude/launch-preparation-QmTb6claude/new-session-xk1l7claude/plan-platform-architecture-kkN4yclaude/platform-analysis-roadmap-1nUGLclaude/platform-launch-assessment-8dWV8claude/polish-platform-release-AeDrUclaude/resume-previous-work-KzyLwclaude/review-crontech-handoff-qYEVqclaude/review-project-completeness-lHhS2claude/review-readme-docs-ulqPKclaude/serene-edison-rj87weclaude/setup-multi-repo-dev-BCwNQclaude/ship-fixes-and-tests-Jvz1cclaude/site-audit-competitive-pctlwgclaude/site-migration-vercel-XstpKclaude/standalone-product-repos-XHFTDcopilot/feat-smart-empty-states-keyboard-first-enhancementcopilot/feat-smart-morning-digest-review-context-restorecopilot/fix-and-process-workflowscopilot/update-ai-powered-code-reviewfeat/debt-mapfeat/push-policy-codeowners-hardeningfeat/smart-digest-contextfeat/stage-impactfeat/t1-secret-migrationfeat/u-polishfeat/w-self-hostfeat/w2-claude-configfix/agent-journey-orphan-sweepgatetest/auto-fix-1776586424172gatetest/auto-fix-1776586534814gatetest/auto-fix-1776590685143gatetest/auto-fix-1776590808199mainops/redeploy-retriggerstyle/dxt-cta-themeworktree-agent-a3377aad30d55da26worktree-agent-a7ef607b7ee1d6c74
migration.md3.5 KB · 73 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Migration guide

This document covers the rough edges that come up when moving an existing
repo onto Gluecron. The git history side is easy — `git clone --bare` does
the work. The tricky bits live around things GitHub _doesn't_ expose
through its API.

## Migrating GitHub Actions secrets

GitHub's API exposes the **names** of a repo's Actions secrets but never
the **values** — even an authenticated repo owner cannot read them back
through the API. (This is deliberate on GitHub's part. The same constraint
applies to `gh secret list` and any third-party tool.) So when you move a
repo from GitHub to Gluecron, you have to re-paste each secret value
once. We make this as painless as we can.

**The flow:**

1. Import your repo at [`/import`](/import) (Option 2 — single-repo URL).
   Paste your repository URL **and** a GitHub personal access token with
   the `repo` scope. The token is used to:
   - clone private repositories (existing behaviour);
   - list the secret **names** on the GitHub repo (new in Block T1) so we
     can pre-create empty placeholder rows in Gluecron's encrypted
     `workflow_secrets` table.
2. After the import completes, if any secrets were found you'll be
   redirected to the secrets-checklist page at
   `/:owner/:repo/import/secrets`. Each row shows the secret name and a
   status pill — "Empty" (yellow) for placeholders we just created and
   "Pasted" (green) for ones you've already filled in.
3. For each secret, paste the value into the password input and click
   **Save**. The value is encrypted with AES-256-GCM under the per-host
   `WORKFLOW_SECRETS_KEY` and stored in the existing `workflow_secrets`
   table — exactly the same code path as the regular secrets-settings
   UI. We never log plaintext values anywhere.
4. When you're done — or partway through if you need to find more values
   later — click **Done — take me to my repo**. You can optionally tick
   the "Also delete the N empty placeholders on my way out" box to clean
   up any rows you haven't filled. Either way you can come back and edit
   any time via `/:owner/:repo/settings/secrets`.
5. Reference your secrets in `.gluecron/workflows/*.yml` as
   `${{ secrets.NAME }}` — the same syntax as GitHub Actions. The
   workflow runner does the substitution at step-execution time; tokens
   pointing at missing names are left intact in the run log as a loud
   "this secret is unset" failure signal.

### Where do I find each value?

GitHub doesn't let you read it back. Look in:

- the password manager (1Password, Bitwarden, etc.) you used when you
  first added the secret to GitHub
- the `.env` / `.env.production` file in your local checkout
- the original provisioning script that minted the credential
- the upstream service's dashboard (Stripe, AWS, etc.) — most providers
  let you regenerate the credential, which is a good security hygiene
  step anyway

### Skipping the checklist

The checklist step is **opt-in via the token field**. If you import a
repo without supplying a GitHub PAT (or supply one that lacks the
`repo` scope) we silently skip the secrets step and drop you on the
imported repo's main page. Adding the secrets later by hand at
`/:owner/:repo/settings/secrets` works exactly the same way.

### What gets logged

Just the secret **name** (e.g. `STRIPE_API_KEY`) and a hash of the
audit-log row — never the value, never any byte of the encrypted blob.
The audit-log actions are `workflow.secret.import_pasted` (per-secret
save) and `workflow.secret.import_cleanup` (cleanup of remaining empty
placeholders on Done).