Skip to content

Commit f728baf

Browse files
Generated commit to update templated files based on rev ba6b798 in stackabletech/operator-templating repo. (#164)
Triggered by: Manual run triggered by: razvan with message [CLA in readmes and other fixes]
1 parent 630240e commit f728baf

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.readme/partials/borrowed/footer.md.j2

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ And our internal operators:
5050

5151
## Contributing
5252

53-
Contributions are welcome. Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
53+
Contributions are welcome.
54+
Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
55+
All contributors will have to sign a [Contributor License Agreement](https://github.com/stackabletech/.github/blob/main/cla.md).
56+
This is enforced automatically when you submit a Pull Request where a bot will guide you through the process.
5457

5558
## License
5659

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,10 @@ And our internal operators:
7979

8080
## Contributing
8181

82-
Contributions are welcome. Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
82+
Contributions are welcome.
83+
Follow our [Contributors Guide](https://docs.stackable.tech/home/stable/contributor/index.html) to learn how you can contribute.
84+
All contributors will have to sign a [Contributor License Agreement](https://github.com/stackabletech/.github/blob/main/cla.md).
85+
This is enforced automatically when you submit a Pull Request where a bot will guide you through the process.
8386

8487
## License
8588

scripts/run_tests.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,14 @@ run_tests() {
9797
OPTS+=("--test=$KUTTL_TEST")
9898
fi
9999

100-
pushd "$TEST_ROOT" || exit
100+
pushd "$TEST_ROOT" || exit 1
101101
# Disable SC2068 because we want to pass the array as individual arguments
102102
# and it would break for the "--parallel n" option.
103103
# shellcheck disable=SC2068
104104
kubectl-kuttl ${OPTS[@]}
105-
popd || exit
105+
local KUTTL_EXIT_CODE=$?
106+
popd || exit 1
107+
exit $KUTTL_EXIT_CODE
106108
}
107109

108110
usage() {

0 commit comments

Comments
 (0)