Skip to content

Commit d0d243e

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

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

.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
@@ -86,7 +86,10 @@ And our internal operators:
8686

8787
## Contributing
8888

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

9194
## License
9295

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)