Skip to content

Commit

Permalink
chore: Update sync-repo-settings with new teams
Browse files Browse the repository at this point in the history
  • Loading branch information
dazuma committed Aug 8, 2022
1 parent 437e2b0 commit ae3f0b3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# For syntax help see:
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax

* @googleapis/yoshi-ruby
* @googleapis/ruby-team
4 changes: 2 additions & 2 deletions .github/sync-repo-settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ branchProtectionRules:
permissionRules:
- team: yoshi-admins
permission: admin
- team: yoshi-ruby-admins
- team: ruby-admins
permission: admin
- team: yoshi-ruby
- team: ruby-team
permission: push
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
node-version: "16.x"
- name: Install dependencies
shell: bash
run: "gem install --no-document toys && bundle install"
run: "gem install --no-document bundler toys && bundle install"
- name: Test ${{ matrix.task }}
shell: bash
run: toys do ${{ matrix.task }} < /dev/null
12 changes: 6 additions & 6 deletions lib/googleauth/credentials_loader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ module CredentialsLoader

SYSTEM_DEFAULT_ERROR = "Unable to read the system default credential file".freeze

CLOUD_SDK_CLIENT_ID = "764086051850-6qr4p6gpi6hn506pt8ejuq83di341hur.app"\
CLOUD_SDK_CLIENT_ID = "764086051850-6qr4p6gpi6hn506pt8ejuq83di341hur.app" \
"s.googleusercontent.com".freeze

CLOUD_SDK_CREDENTIALS_WARNING =
"Your application has authenticated using end user credentials from Google Cloud SDK. We recommend that most" \
" server applications use service accounts instead. If your application continues to use end user credentials" \
' from Cloud SDK, you might receive a "quota exceeded" or "API not enabled" error. For more information about' \
" service accounts, see https://cloud.google.com/docs/authentication/. To suppress this message, set the"\
" GOOGLE_AUTH_SUPPRESS_CREDENTIALS_WARNINGS environment variable.".freeze
"Your application has authenticated using end user credentials from Google Cloud SDK. We recommend that most " \
"server applications use service accounts instead. If your application continues to use end user credentials " \
'from Cloud SDK, you might receive a "quota exceeded" or "API not enabled" error. For more information about ' \
"service accounts, see https://cloud.google.com/docs/authentication/. To suppress this message, set the "\
"GOOGLE_AUTH_SUPPRESS_CREDENTIALS_WARNINGS environment variable.".freeze

# make_creds proxies the construction of a credentials instance
#
Expand Down

0 comments on commit ae3f0b3

Please sign in to comment.