diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fca6f4dc83d..c8ae6fcd024 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 push 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: