Skip to content

Commit 60ac482

Browse files
chore(ci): add missing container-tag/container-suffix and fix stale standards doc (#207)
Add container-tag and container-suffix parameters to all reusable workflow jobs in ci.yml. Fix repository-standards.md: correct git hooks path, replace direct markdownlint with vrg-docker-run -- vrg-validate, remove stale --agent flag from vrg-commit docs, fix --linkage default from Fixes to Ref. Addresses vergil-project/vergil-tooling#1015, vergil-project/vergil-tooling#1013 Co-authored-by: Claude <noreply@anthropic.com>
1 parent f8ffff0 commit 60ac482

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
language: shell
2727
versions: '["latest"]'
2828
container-suffix: base
29+
container-tag: 'latest'
2930

3031
security:
3132
uses: vergil-project/vergil-actions/.github/workflows/ci-security.yml@v2.0
@@ -34,6 +35,8 @@ jobs:
3435
run-codeql: false
3536
run-standards: ${{ inputs.run-release != 'false' }}
3637
run-security: ${{ inputs.run-security != 'false' }}
38+
container-suffix: base
39+
container-tag: 'latest'
3740
permissions:
3841
contents: read
3942
security-events: write
@@ -43,3 +46,5 @@ jobs:
4346
with:
4447
language: shell
4548
run-release: ${{ inputs.run-release != 'false' }}
49+
container-suffix: base
50+
container-tag: 'latest'

docs/repository-standards.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
- Before modifying any files, check the current branch with `git status -sb`.
1212
- If on `develop`, create a short-lived `feature/*` branch or ask for explicit approval to proceed on `develop`.
1313
- If approval is granted to work on `develop`, call it out in the response and proceed only for that user-approved scope.
14-
- Enable repository git hooks before committing: `git config core.hooksPath scripts/git-hooks`.
14+
- Enable repository git hooks before committing: `git config core.hooksPath .githooks`.
1515

1616
## Local validation
1717

1818
```bash
19-
markdownlint . # Lint all Markdown files
19+
vrg-docker-run -- vrg-validate
2020
```
2121

2222
## Merge strategy override
@@ -37,14 +37,13 @@ submission. Do not construct commit messages or PR bodies manually.
3737

3838
```bash
3939
vrg-commit \
40-
--type TYPE --message MESSAGE --agent AGENT \
40+
--type TYPE --message MESSAGE \
4141
[--scope SCOPE] [--body BODY]
4242
```
4343

4444
- `--type` (required): one of
4545
`feat|fix|docs|style|refactor|test|chore|ci|build`
4646
- `--message` (required): commit description
47-
- `--agent` (required): `claude` or `codex`
4847
- `--scope` (optional): conventional commit scope
4948
- `--body` (optional): detailed commit body
5049

@@ -62,7 +61,7 @@ vrg-submit-pr \
6261

6362
- `--issue` (required): GitHub issue number (just the number)
6463
- `--summary` (required): one-line PR summary
65-
- `--linkage` (optional, default: `Fixes`):
64+
- `--linkage` (optional, default: `Ref`):
6665
`Fixes|Closes|Resolves|Ref`
6766
- `--title` (optional): PR title (default: most recent commit
6867
subject)

0 commit comments

Comments
 (0)