├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .kokoro ├── android │ ├── common.cfg │ ├── connectivity-samples.cfg │ └── media-samples.cfg ├── build-android.sh ├── build-dotnet.bat ├── build-dotnet.ps1 ├── build-flutter.sh ├── build-ios.sh ├── build-java-split-projects.sh ├── build-node.sh ├── build-php.sh ├── build-python.sh ├── common.cfg ├── firebase │ ├── FirebaseUI-iOS.cfg │ ├── appquality-codelab-ios.cfg │ ├── build-html.sh │ ├── build-node.sh │ ├── codelab-friendlychat-android.cfg │ ├── codelab-friendlychat-ios.cfg │ ├── codelab-friendlychat-web-html.cfg │ ├── codelab-friendlychat-web.cfg │ ├── common.cfg │ ├── firebase-js-sdk.cfg │ ├── friendlyeats-android.cfg │ ├── friendlyeats-ios.cfg │ ├── friendlyeats-web.cfg │ ├── friendlypix-ios.cfg │ ├── functions-samples-html.cfg │ ├── functions-samples.cfg │ ├── mlkit-material-android.cfg │ ├── mlkit-material-ios.cfg │ ├── quickstart-android.cfg │ ├── quickstart-flutter.cfg │ ├── quickstart-ios.cfg │ ├── quickstart-js-html.cfg │ ├── quickstart-js-node.cfg │ ├── quickstart-nodejs.cfg │ ├── quickstart-testing-html.cfg │ ├── quickstart-testing-node.cfg │ ├── snippets-android.cfg │ ├── snippets-ios.cfg │ ├── snippets-node.cfg │ ├── snippets-web-html.cfg │ └── snippets-web-node.cfg ├── getting-started-php.cfg ├── getting-started-python.cfg ├── java-repo-tools.cfg ├── php-docs-samples.cfg ├── python-docs-samples.cfg ├── python-runtime.cfg └── trampoline.sh ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── check.sh ├── clone-and-checkout.sh ├── commit-and-push.sh ├── fix_android_dependencies.py ├── java-versions-rules.xml ├── send-pr.sh ├── set-env.template.sh ├── use-latest-deps-android.sh ├── use-latest-deps-dotnet.sh ├── use-latest-deps-flutter.sh ├── use-latest-deps-html.sh ├── use-latest-deps-ios.sh ├── use-latest-deps-java.sh ├── use-latest-deps-js.sh ├── use-latest-deps-node.sh ├── use-latest-deps-php.sh ├── use-latest-deps-python.sh └── webhook-app ├── .gitignore ├── README.md ├── app.yaml ├── cron.yaml ├── github_helper.py ├── gunicorn.conf.py ├── invitations.py ├── main.py ├── main_test.py ├── requirements.txt ├── webhook_creator.py ├── webhook_helper.py └── webhooks.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/android/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/android/common.cfg -------------------------------------------------------------------------------- /.kokoro/android/connectivity-samples.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/android/connectivity-samples.cfg -------------------------------------------------------------------------------- /.kokoro/android/media-samples.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/android/media-samples.cfg -------------------------------------------------------------------------------- /.kokoro/build-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/build-android.sh -------------------------------------------------------------------------------- /.kokoro/build-dotnet.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/build-dotnet.bat -------------------------------------------------------------------------------- /.kokoro/build-dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/build-dotnet.ps1 -------------------------------------------------------------------------------- /.kokoro/build-flutter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/build-flutter.sh -------------------------------------------------------------------------------- /.kokoro/build-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/build-ios.sh -------------------------------------------------------------------------------- /.kokoro/build-java-split-projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/build-java-split-projects.sh -------------------------------------------------------------------------------- /.kokoro/build-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/build-node.sh -------------------------------------------------------------------------------- /.kokoro/build-php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/build-php.sh -------------------------------------------------------------------------------- /.kokoro/build-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/build-python.sh -------------------------------------------------------------------------------- /.kokoro/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/common.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/FirebaseUI-iOS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/FirebaseUI-iOS.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/appquality-codelab-ios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/appquality-codelab-ios.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/build-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/build-html.sh -------------------------------------------------------------------------------- /.kokoro/firebase/build-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/build-node.sh -------------------------------------------------------------------------------- /.kokoro/firebase/codelab-friendlychat-android.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/codelab-friendlychat-android.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/codelab-friendlychat-ios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/codelab-friendlychat-ios.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/codelab-friendlychat-web-html.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/codelab-friendlychat-web-html.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/codelab-friendlychat-web.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/codelab-friendlychat-web.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/common.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/firebase-js-sdk.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/firebase-js-sdk.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/friendlyeats-android.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/friendlyeats-android.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/friendlyeats-ios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/friendlyeats-ios.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/friendlyeats-web.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/friendlyeats-web.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/friendlypix-ios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/friendlypix-ios.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/functions-samples-html.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/functions-samples-html.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/functions-samples.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/functions-samples.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/mlkit-material-android.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/mlkit-material-android.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/mlkit-material-ios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/mlkit-material-ios.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/quickstart-android.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/quickstart-android.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/quickstart-flutter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/quickstart-flutter.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/quickstart-ios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/quickstart-ios.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/quickstart-js-html.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/quickstart-js-html.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/quickstart-js-node.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/quickstart-js-node.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/quickstart-nodejs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/quickstart-nodejs.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/quickstart-testing-html.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/quickstart-testing-html.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/quickstart-testing-node.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/quickstart-testing-node.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/snippets-android.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/snippets-android.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/snippets-ios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/snippets-ios.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/snippets-node.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/snippets-node.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/snippets-web-html.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/snippets-web-html.cfg -------------------------------------------------------------------------------- /.kokoro/firebase/snippets-web-node.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/firebase/snippets-web-node.cfg -------------------------------------------------------------------------------- /.kokoro/getting-started-php.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/getting-started-php.cfg -------------------------------------------------------------------------------- /.kokoro/getting-started-python.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/getting-started-python.cfg -------------------------------------------------------------------------------- /.kokoro/java-repo-tools.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/java-repo-tools.cfg -------------------------------------------------------------------------------- /.kokoro/php-docs-samples.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/php-docs-samples.cfg -------------------------------------------------------------------------------- /.kokoro/python-docs-samples.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/python-docs-samples.cfg -------------------------------------------------------------------------------- /.kokoro/python-runtime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/python-runtime.cfg -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/README.md -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/check.sh -------------------------------------------------------------------------------- /clone-and-checkout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/clone-and-checkout.sh -------------------------------------------------------------------------------- /commit-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/commit-and-push.sh -------------------------------------------------------------------------------- /fix_android_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/fix_android_dependencies.py -------------------------------------------------------------------------------- /java-versions-rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/java-versions-rules.xml -------------------------------------------------------------------------------- /send-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/send-pr.sh -------------------------------------------------------------------------------- /set-env.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/set-env.template.sh -------------------------------------------------------------------------------- /use-latest-deps-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/use-latest-deps-android.sh -------------------------------------------------------------------------------- /use-latest-deps-dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/use-latest-deps-dotnet.sh -------------------------------------------------------------------------------- /use-latest-deps-flutter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/use-latest-deps-flutter.sh -------------------------------------------------------------------------------- /use-latest-deps-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/use-latest-deps-html.sh -------------------------------------------------------------------------------- /use-latest-deps-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/use-latest-deps-ios.sh -------------------------------------------------------------------------------- /use-latest-deps-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/use-latest-deps-java.sh -------------------------------------------------------------------------------- /use-latest-deps-js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/use-latest-deps-js.sh -------------------------------------------------------------------------------- /use-latest-deps-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/use-latest-deps-node.sh -------------------------------------------------------------------------------- /use-latest-deps-php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/use-latest-deps-php.sh -------------------------------------------------------------------------------- /use-latest-deps-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/use-latest-deps-python.sh -------------------------------------------------------------------------------- /webhook-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/.gitignore -------------------------------------------------------------------------------- /webhook-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/README.md -------------------------------------------------------------------------------- /webhook-app/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/app.yaml -------------------------------------------------------------------------------- /webhook-app/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/cron.yaml -------------------------------------------------------------------------------- /webhook-app/github_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/github_helper.py -------------------------------------------------------------------------------- /webhook-app/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/gunicorn.conf.py -------------------------------------------------------------------------------- /webhook-app/invitations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/invitations.py -------------------------------------------------------------------------------- /webhook-app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/main.py -------------------------------------------------------------------------------- /webhook-app/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/main_test.py -------------------------------------------------------------------------------- /webhook-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/requirements.txt -------------------------------------------------------------------------------- /webhook-app/webhook_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/webhook_creator.py -------------------------------------------------------------------------------- /webhook-app/webhook_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/webhook_helper.py -------------------------------------------------------------------------------- /webhook-app/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/repository-gardener/HEAD/webhook-app/webhooks.py --------------------------------------------------------------------------------