From f4d6aa9332e54f3df6dc83623f407b157c616e9b Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Mon, 9 Jan 2023 08:50:40 -0700 Subject: [PATCH] try setting credentials this way --- .github/workflows/tests.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5bb7c45af..90ae65a43 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,14 +15,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: oleksiyrudenko/gha-git-credentials@v2-latest - with: - name: 'Jim Edwards' - email: 'jedwards@ucar.edu' - token: '${{ secrets.GITHUB_TOKEN }}' - name: Test Manic run: | pushd test + git config --global user.email "devnull@example.com" + git config --global user.name "GITHUB tester" make utest make stest popd