Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.base.ref}}
fetch-depth: 0

- name: Set env.BUILD_BOT to Build Bot's Username
run: echo BUILD_BOT=polywrap-build-bot >> $GITHUB_ENV
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
uses: peter-evans/create-pull-request@v3
with:
branch: cd/${{env.RELEASE_VERSION}}
base: ${{github.event.pull_request.base.ref}}
base: main
committer: GitHub <noreply@github.com>
author: ${{env.BUILD_BOT}} <${{env.BUILD_BOT}}@users.noreply.github.com>
commit-message: "chore: CD ${{env.RELEASE_VERSION}}"
Expand Down Expand Up @@ -174,8 +174,8 @@ jobs:
id: cpr-post-cd
uses: peter-evans/create-pull-request@v3
with:
branch: cd/${{env.RELEASE_VERSION}}
base: ${{github.event.pull_request.compare.ref}}
branch: post-cd/${{env.RELEASE_VERSION}}
base: dev
committer: GitHub <noreply@github.com>
author: ${{env.BUILD_BOT}} <${{env.BUILD_BOT}}@users.noreply.github.com>
commit-message: "chore: POST CD ${{env.RELEASE_VERSION}}"
Expand Down