Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,16 @@
- Pushes to `codex/feature-testing` publish disposable snapshot tags `v<canonical>-ft.<runNumber>`.
- `pull_request` runs targeting `main` are validation-only; they verify the canonical version and build, but do not publish.
- Branch-derived prerelease and feature-testing versions are workflow outputs only and must never be committed back into repo metadata files.

## Review/testing note

- Local YAML validation warnings against `.github/workflows/release.yml` should be interpreted carefully.
- Command used during review/testing:

```bash
python3 - <<'PY'
import yaml
PY
```

Warning: `python3` is present, but this command currently fails because `import yaml` raises `ModuleNotFoundError: No module named 'yaml'` due to missing PyYAML. This is an environment/tooling dependency issue, not evidence that `.github/workflows/release.yml` is invalid YAML.
Comment thread
mfoltz marked this conversation as resolved.
Loading