Adds a new github-repo EventSource that enumerates all repos via
/user/repos and walks each repo's /commits?author= endpoint, which
has no 1000-result cap unlike the Search API. Events use the same
github-commit:{sha} ID scheme as github_search for dedup. Per-repo
poller state enables full backfill on first run, page-1-only on
subsequent polls. Weekly poll interval by default.
Closes #1
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
782 B
Cheetah
26 lines
782 B
Cheetah
JOURNAL_STREAM=1
|
|
RUST_LOG=info,sqlx=warn
|
|
|
|
DATABASE_URL=postgres://moments_rw@magrathea.kosherinata.internal:5432/moments?sslmode=verify-full&sslrootcert=/etc/pki/ca-trust/source/anchors/root-internal.pem&sslcert=/etc/pki/tls/misc/{{HOSTNAME}}.pem&sslkey=/etc/pki/tls/private/{{HOSTNAME}}.pem
|
|
|
|
GITHUB_USER=grenade
|
|
GITHUB_TOKEN={{GITHUB_TOKEN}}
|
|
POLL_INTERVAL_SECS=600
|
|
SEARCH_POLL_INTERVAL_SECS=86400
|
|
REPO_POLL_INTERVAL_SECS=604800
|
|
|
|
GITEA_HOST=git.lair.cafe
|
|
GITEA_USER=grenade
|
|
GITEA_TOKEN={{GITEA_TOKEN}}
|
|
GITEA_POLL_INTERVAL_SECS=600
|
|
|
|
HG_HOST=hg-edge.mozilla.org
|
|
HG_GROUPS=build,integration
|
|
HG_REPOS=mozilla-central
|
|
HG_AUTHOR_TERMS=rthijssen,grenade
|
|
HG_POLL_INTERVAL_SECS=86400
|
|
|
|
BUGZILLA_HOST=bugzilla.mozilla.org
|
|
BUGZILLA_EMAIL=rthijssen@mozilla.com
|
|
BUGZILLA_POLL_INTERVAL_SECS=86400
|