Skip to content
Closed
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
5 changes: 3 additions & 2 deletions .github/workflows/test-release-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ jobs:

create-webdev-pr:
name: Create Webdev PR
if: "github.event_name == 'push'"
if: "github.event_name == 'push' || github.event_name == 'pull_request'"
runs-on: "ubuntu-22.04"
environment: npm
permissions:
Expand All @@ -267,6 +267,7 @@ jobs:
fetch-depth: 0

- name: Reset develop to main
if: "github.event_name == 'push'"
run: |
git checkout develop
git reset --hard origin/main
Expand Down Expand Up @@ -317,7 +318,7 @@ jobs:

curl https://lsdev-repo.s3-us-west-2.amazonaws.com/github-actions/copybara_deploy.jar --output ./copybara.jar
trap on_exit EXIT
java -jar copybara.jar ./copy.bara.sky js-sdk-push-to-webdev --nogit-destination-rebase
java -jar copybara.jar ./copy.bara.sky js-sdk-push-to-webdev

- name: "Notify failure on Slack"
if: "failure() && github.event_name == 'push'"
Expand Down
Loading