Skip to content

Commit 4d3f965

Browse files
Merge pull request product-os#1419 from product-os/ab77/patch
patch: Always update stacks if stack config is changed
2 parents dd2a563 + 487eb8c commit 4d3f965

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/flowzone.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flowzone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2834,7 +2834,7 @@ jobs:
28342834
28352835
// Keep stack if template is modified or workflow is modified
28362836
return modifiedFiles.some(file =>
2837-
file === template || file.startsWith('.github/workflows/')
2837+
file === template || file.startsWith('.github/workflows/' || /^aws-cf-templates\.(y(a)?ml|json)$/.test(file))
28382838
);
28392839
});
28402840

tests/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = ""
55
authors = ["Team balena <[email protected]>"]
66

77
[tool.poetry.dependencies]
8-
python = ">=3.8,<3.10"
8+
python = ">=3.8,<=3.13"
99

1010
[tool.poetry.dev-dependencies]
1111
pytest = "^7.1.3"

0 commit comments

Comments
 (0)