fix: doc site import #960
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
name: Create release PR | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v4.1.1 | |
id: release | |
with: | |
command: manifest | |
token: ${{secrets.GITHUB_TOKEN}} | |
default-branch: main | |
update-pull-request: | |
name: Update pull request | |
runs-on: ubuntu-latest | |
needs: release-please | |
if: ${{ !needs.release-please.outputs.releases_created }} | |
steps: | |
- name: Fetching the repository | |
uses: actions/checkout@v4 | |
with: | |
ref: release-please--branches--main | |
fetch-depth: 2 | |
lfs: 'true' | |
- name: Setting up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Updating package-lock.json file | |
run: npm install --no-audit --no-fund --ignore-scripts --package-lock-only | |
- name: Merging changes with last commit | |
run: | | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add . | |
git commit --amend --no-edit | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
continue-on-error: true | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: release-please--branches--main | |
force: true |