From bdacdc93a107108add5bd9dc00473997534aa761 Mon Sep 17 00:00:00 2001 From: Frank Natividad Date: Tue, 4 Aug 2020 15:58:27 -0700 Subject: [PATCH] fix: Ignore CONTRIBUTING.md (#447) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Make sure to open an issue as a #446 before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary) Fixes #446 ☕️ --- CONTRIBUTING.md | 1 + synth.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f2dbdee06..39d1c88d9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -48,6 +48,7 @@ integration tests. ```bash export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service/account.json +export IT_SERVICE_ACCOUNT_EMAIL=my-service-account@my-project.gserviceaccount.com mvn -Penable-integration-tests clean verify ``` diff --git a/synth.py b/synth.py index 7e8a9a3dc..23c93c7c2 100644 --- a/synth.py +++ b/synth.py @@ -19,6 +19,7 @@ AUTOSYNTH_MULTIPLE_COMMITS = True java.common_templates(excludes=[ - '.kokoro/presubmit/integration.cfg' + '.kokoro/presubmit/integration.cfg', + 'CONTRIBUTING.md' ])