From db8b2731fc69b9059c910af60031e81c7e6b1a0e Mon Sep 17 00:00:00 2001 From: Henry Kiem Date: Thu, 12 Sep 2024 10:25:15 -0700 Subject: [PATCH] fix(changelog): Removed dryrun flag --- .github/workflows/changelog.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 02845539..c42fc531 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -26,6 +26,7 @@ jobs: - name: Create Pull Request env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | git config user.name "Cloud Game Development Toolkit Bot" git config user.email 176329154+cloud-game-development-toolkit-bot@users.noreply.github.com @@ -35,4 +36,4 @@ jobs: git commit -m "Update Changelog" git push origin changelog-update-${{ github.run_id }} gh version - gh pr create --title "chore: update changelog" --body "This is an auto-generated PR to update the changelog." --base main --head changelog-update-${{ github.run_id }} --dry-run + gh pr create --title "chore: update changelog" --body "This is an auto-generated PR to update the changelog." --base main --head changelog-update-${{ github.run_id }}