We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 076c9fe commit 535b8edCopy full SHA for 535b8ed
.github/workflows/release.yml
@@ -79,6 +79,16 @@ jobs:
79
runs-on: ubuntu-latest
80
steps:
81
- uses: actions/checkout@v3
82
+ - name: Configure Identity
83
+ # Commits from github-actions do not
84
+ # trigger other GitHub Actions. As a result,
85
+ # we push from Ionitron instead so actions
86
+ # run when merging the release branch
87
+ # back into main.
88
+ run: |
89
+ git config user.name ionitron
90
+ git config user.email [email protected]
91
+ shell: bash
92
# Lerna does not automatically bump versions
93
# of Ionic dependencies that have changed,
94
# so we do that here.
@@ -88,6 +98,8 @@ jobs:
98
git add .
99
git commit -m "chore(): update package lock files"
100
git push
101
+ env:
102
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
103
shell: bash
104
105
purge-cdn-cache:
0 commit comments