Skip to content

Commit

Permalink
chore: use PRs for post-publish
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandolf committed Jun 2, 2022
1 parent 8a0937e commit dac3e65
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,18 @@ jobs:
run: npm install
- name: Build main docs
run: npm run doc
- name: Commit and push
- name: Commit
run: |
git config --global user.email "55107282+release-please[bot]@users.noreply.github.com"
git config --global user.name "release-please[bot]"
git add -A
git commit -m "chore: build main docs"
git push
git commit -am "chore: unfreeze version on docs"
- name: Create PR
uses: peter-evans/create-pull-request@v3
with:
commit-message: Build dist
author: 'release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>'
title: 'chore: unfreeze version on docs'
body: ''
labels: automated pr
branch: create-pull-request/unfreeze
delete-branch: true

0 comments on commit dac3e65

Please sign in to comment.