Skip to content

Commit fc3341b

Browse files
committed
TECH-5070: use dummy credentials for git config
1 parent 3322aef commit fc3341b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/declare_schema_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
- name: Checkout Branch
2222
id: checkout_branch
2323
uses: actions/checkout@v2
24-
with:
25-
token: ${{ secrets.GITHUB_TOKEN }}
2624
- name: Setup Ruby
2725
id: setup_ruby
2826
uses: ruby/setup-ruby@v1
@@ -40,5 +38,7 @@ jobs:
4038
id: appraisals
4139
run: |
4240
bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle} --gemfile=${{ matrix.gemfile }}
41+
git config user.email "[email protected]"
42+
git config user.name "dummy"
4343
bundle exec rake test:prepare_testapp[force]
4444
bundle exec rake test:all < test_responses.txt

0 commit comments

Comments
 (0)