Skip to content

Commit

Permalink
don't show chore commits
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles committed Nov 11, 2024
1 parent e64ee1b commit 3c6cb94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/changelogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,8 @@ def get_commits(prev_manifests, manifests, workdir: str):

if subject.lower().startswith("merge"):
continue
if subject.lower().startswith("chore"):
continue

out += (
COMMIT_FORMAT.replace("{short}", short)
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ image_name image="bluefin" tag="latest" flavor="main":
[group('Utility')]
generate-build-tags image="bluefin" tag="latest" flavor="main" ghcr="0" github_number="" github_event="" version="":
#!/usr/bin/bash
set -eoux pipefail
set -eou pipefail

TODAY="$(date +%A)"
WEEKLY="Sunday"
Expand Down

0 comments on commit 3c6cb94

Please sign in to comment.