From d5d256153e630363eae1196891a009ac8360922c Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 14:57:27 -0600 Subject: [PATCH 1/3] Remove codeball --- .github/workflows/codeball.yml | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 .github/workflows/codeball.yml diff --git a/.github/workflows/codeball.yml b/.github/workflows/codeball.yml deleted file mode 100644 index 1aa78463..00000000 --- a/.github/workflows/codeball.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Codeball -on: [pull_request] -permissions: - pull-requests: write -jobs: - codeball_job: - runs-on: ubuntu-latest - name: Codeball - steps: - # Run Codeball on all new Pull Requests 🚀 - # For customizations and more documentation, see https://github.com/sturdy-dev/codeball-action - - name: Codeball - uses: sturdy-dev/codeball-action@v2 From de0c77c15872138f0421a159761d9421655c254a Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 15:22:00 -0600 Subject: [PATCH 2/3] Update git user info --- .github/workflows/client-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/client-build.yml b/.github/workflows/client-build.yml index 3ac4f1d9..7280e9b4 100644 --- a/.github/workflows/client-build.yml +++ b/.github/workflows/client-build.yml @@ -45,8 +45,8 @@ jobs: - name: Push run: | - git config --global user.email "wolfemikl@gmail.com" - git config --global user.name "Mikl Wolfe" + git config user.name "Mikl Wolfe" + git config user.email "wolfe@mikl.com" git add docs git commit -am 'Update production build' git push -fu origin main:client From 781fdce68a3c447b201786d959a2d238dde9ca70 Mon Sep 17 00:00:00 2001 From: chiefmikey Date: Sun, 21 Aug 2022 15:36:31 -0600 Subject: [PATCH 3/3] Add checkout token --- .github/workflows/client-build.yml | 2 ++ .github/workflows/test-build.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/client-build.yml b/.github/workflows/client-build.yml index 7280e9b4..96127a7f 100644 --- a/.github/workflows/client-build.yml +++ b/.github/workflows/client-build.yml @@ -20,6 +20,8 @@ jobs: - name: Checkout uses: actions/checkout@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} - name: Webpack run: | diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 0ca198d4..2d5d0dee 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -17,6 +17,8 @@ jobs: - name: Checkout uses: actions/checkout@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} - name: Webpack run: |