-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vars.example
More file actions
40 lines (31 loc) · 1.6 KB
/
.vars.example
File metadata and controls
40 lines (31 loc) · 1.6 KB
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
# -----------------------------------------------------------------------------
# .vars — act / local CI repo variables (LOCAL ONLY)
#
# This file mirrors GitHub *repository variables* for local `act` runs.
#
# - Loaded automatically by `act`
# - Must NOT be committed
# - Contains NON-SECRET values only
#
# See docs/devops/CI_VARIABLES.md for full reference.
# -----------------------------------------------------------------------------
# Canonical repository allowed to publish artifacts
# Format: <owner>/<repo>
CANONICAL_REPOSITORY=your-org/hatch
# ── Release ──────────────────────────────────────────────────────────────────
# Enable semantic-release locally when running with `act`
# ENABLE_SEMANTIC_RELEASE=true
# Release artifact guard — enabled by default (unset = enabled)
# GUARD_RELEASE_ARTIFACTS=false
# Names allowed to commit release artifacts (comma-separated)
# RELEASE_BOT_NAMES=github-actions[bot]
# Artifact publishing — disabled by default (unset = disabled)
# PUBLISH_DOCKER_IMAGE=true
# PUBLISH_HELM_CHART=true
# ── CI feature flags ─────────────────────────────────────────────────────────
# All enabled by default (unset = enabled); set to 'false' to skip
# Gates go vet + staticcheck + go build + go test
# Set to false until Go source exists (Milestone 1)
ENABLE_GO_ANALYSIS=false
# ENABLE_MD_LINT=false
# ENABLE_DOCTOR_SNAPSHOT=false