Skip to content

Commit 48c31c8

Browse files
author
GitHub Actions
committed
Regenerate static files
1 parent b158130 commit 48c31c8

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/shared-ext-commit-check-workflow.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,15 @@ jobs:
5050

5151
- name: Check PR commit messages don't start with '!reword'
5252
run: "[ $(git log --grep '^!reword' | wc -c) -eq 0 ]"
53+
54+
- name: Check PR commit messages don't start with 'fixup!'
55+
run: "[ $(git log --grep '^fixup!' | wc -c) -eq 0 ]"
56+
57+
- name: Check PR commit messages don't start with 'squash!'
58+
run: "[ $(git log --grep '^squash!' | wc -c) -eq 0 ]"
59+
60+
- name: Check PR commit messages don't start with 'amend!'
61+
run: "[ $(git log --grep '^amend!' | wc -c) -eq 0 ]"
62+
63+
- name: Check PR commit messages don't start with 'reword!'
64+
run: "[ $(git log --grep '^reword!' | wc -c) -eq 0 ]"

static-commontooling/make/include/version.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Included by other .mk files, do not use directly.
44
#
55

6-
PBRVERSION_VERSION?=1.4.1
6+
PBRVERSION_VERSION?=1.4.2
77
PBRVERSION_CONTAINER?=public.ecr.aws/o4o2s1w1/cloudfit/pbrversion
88
# Since the version is pinned above, there's no need to pull images every time, especially since this tool runs very
99
# frequently

0 commit comments

Comments
 (0)