From 16e0a721019ed66a00e4d4fa25223fe9cabfef8c Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 10 Jan 2024 09:33:17 -0500 Subject: [PATCH 1/2] chore(ci): use correct github credentials for pushing --- .github/workflows/release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fca6f4dc83d..079a6450042 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,6 +79,16 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Configure Identity + # Commits from github-actions do not + # trigger other GitHub Actions. As a result, + # we publish releases from Ionitron instead + # so actions run when merging the release branch + # back into main. + run: | + git config user.name ionitron + git config user.email hi@ionicframework.com + shell: bash # Lerna does not automatically bump versions # of Ionic dependencies that have changed, # so we do that here. @@ -88,6 +98,8 @@ jobs: git add . git commit -m "chore(): update package lock files" git push + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} shell: bash purge-cdn-cache: From d96decd438fb129188d54bc18e1392431e5874d9 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 10 Jan 2024 09:36:32 -0500 Subject: [PATCH 2/2] Update release.yml --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 079a6450042..c8ae6fcd024 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,8 +82,8 @@ jobs: - name: Configure Identity # Commits from github-actions do not # trigger other GitHub Actions. As a result, - # we publish releases from Ionitron instead - # so actions run when merging the release branch + # we push from Ionitron instead so actions + # run when merging the release branch # back into main. run: | git config user.name ionitron