From 6905b83e1286f18d260886ee9f6e2ef8fb4a7384 Mon Sep 17 00:00:00 2001 From: "Jeremy R. Manning" Date: Thu, 18 Jul 2024 11:03:24 -0400 Subject: [PATCH] Update launch_events.yml --- .github/workflows/launch_events.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/launch_events.yml b/.github/workflows/launch_events.yml index e6883a5..88c1edd 100644 --- a/.github/workflows/launch_events.yml +++ b/.github/workflows/launch_events.yml @@ -28,14 +28,17 @@ jobs: env: GMAIL_PASSWORD: ${{ secrets.GMAIL_PASSWORD }} + - name: Configure git + run: | + git config --global user.name 'github-actions[bot]' + git config --global user.email 'github-actions[bot]@users.noreply.github.com' + - name: Commit new workflows uses: stefanzweifel/git-auto-commit-action@v4 with: commit_message: "Add event reminder workflows" file_pattern: ".github/workflows/reminder_*.yml" branch: main + commit_options: "--allow-empty" commit_user_name: github-actions[bot] commit_user_email: github-actions[bot]@users.noreply.github.com - commit_author: "github-actions[bot] " - repository: ${{ github.repository }} - token: ${{ secrets.GITHUB_TOKEN }}