Skip to content
Closed
Show file tree
Hide file tree
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
11 changes: 9 additions & 2 deletions .agent/workflows/publish-change.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,12 @@ Finalize the snapshot and push to the remote.

Once the PR is approved and merged into the integration branch:

7. Create a release tag
`gh release create v1.0.0 --generate-notes`
8. Create a release tag (Automated)

```bash
# Dry run to check version
jj next-minor

# Create release
gh release create $(jj next-minor) --generate-notes
```
6 changes: 5 additions & 1 deletion .trunk/trunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,16 @@ lint:
- yamllint@1.37.1
- actionlint@1.7.9
- checkov@3.2.496
- codespell@2.2.6
- git-diff-check
- markdownlint@0.47.0
- prettier@3.7.4
- shellcheck@0.11.0
- ruff@0.1.6
- shellcheck@0.11.0:
autofix: false
- shfmt@3.6.0
- taplo@0.10.0
- trivy@0.48.1
- trufflehog@3.92.4
actions:
disabled:
Expand Down
Loading