Skip to content

Commit b88d0f9

Browse files
Merge pull request #144 from mq-rest-admin-project/feature/ci-sweep
chore(ci): add missing container-tag/container-suffix and fix stale standards doc
2 parents 3145ea3 + 3ec1ab9 commit b88d0f9

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
with:
3232
language: ruby
3333
versions: ${{ inputs.ruby-versions || '["3.2", "3.3", "3.4"]' }}
34+
container-suffix: ruby
3435

3536
integration-tests:
3637
name: "test / integration / ${{ matrix.ruby-version }}"
@@ -88,6 +89,7 @@ jobs:
8889
with:
8990
language: ruby
9091
versions: ${{ inputs.ruby-versions || '["3.2", "3.3", "3.4"]' }}
92+
container-suffix: ruby
9193

9294
version:
9395
uses: vergil-project/vergil-actions/.github/workflows/ci-version-bump.yml@v2.0

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.2.4

docs/repository-standards.md

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

1919
## Local validation
2020

2121
Canonical local validation command:
2222

2323
```bash
24-
bundle exec rake
24+
vrg-docker-run -- vrg-validate
2525
```
2626

2727
## Tooling requirement
@@ -53,14 +53,13 @@ and PR submission. Do not construct commit messages or PR bodies manually.
5353

5454
```bash
5555
vrg-commit \
56-
--type TYPE --message MESSAGE --agent AGENT \
56+
--type TYPE --message MESSAGE \
5757
[--scope SCOPE] [--body BODY]
5858
```
5959

6060
- `--type` (required): one of
6161
`feat|fix|docs|style|refactor|test|chore|ci|build`
6262
- `--message` (required): commit description
63-
- `--agent` (required): `claude` or `codex`
6463
- `--scope` (optional): conventional commit scope
6564
- `--body` (optional): detailed commit body
6665

@@ -73,17 +72,16 @@ The script resolves the correct `Co-Authored-By` identity from
7372
vrg-submit-pr \
7473
--issue NUMBER --summary TEXT \
7574
[--linkage KEYWORD] [--title TEXT] \
76-
[--notes TEXT] [--docs-only] [--dry-run]
75+
[--notes TEXT] [--dry-run]
7776
```
7877

7978
- `--issue` (required): GitHub issue number (just the number)
8079
- `--summary` (required): one-line PR summary
81-
- `--linkage` (optional, default: `Fixes`):
80+
- `--linkage` (optional, default: `Ref`):
8281
`Fixes|Closes|Resolves|Ref`
8382
- `--title` (optional): PR title (default: most recent commit
8483
subject)
8584
- `--notes` (optional): additional notes
86-
- `--docs-only` (optional): applies docs-only testing exception
8785
- `--dry-run` (optional): print generated PR without executing
8886

8987
The script detects the target branch and merge strategy

0 commit comments

Comments
 (0)