Skip to content
Open
Show file tree
Hide file tree
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/batch_release_pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Creates Batch Release for A Package"
name: "Creates Batch Release for a Package"

on:
repository_dispatch:
Expand All @@ -18,7 +18,7 @@ jobs:
# This step is to create a branch for batch release
# A branch may not be created if there is nothing to release.
# In that case, the workflow will exit and complete successfully.
- name: create batch release PR
- name: create batch release branch
run: |
git config --global user.name ${{ secrets.USER_NAME }}
git config --global user.email ${{ secrets.USER_EMAIL }}
Expand All @@ -29,7 +29,7 @@ jobs:
with:
branch: ${{ env.BRANCH_NAME }}

- name: Create Pull Request
- name: Create batch release PR
if: steps.check-branch-exists.outputs.exists == 'true'
uses: peter-evans/create-pull-request@v7
with:
Expand All @@ -38,6 +38,6 @@ jobs:
title: "[${{ github.event.client_payload.package }}] Batch release"
body: "This PR was created automatically to batch release the `${{ github.event.client_payload.package }}`."
branch: ${{ env.BRANCH_NAME }}
base: release
base: release-${{ github.event.client_payload.package }}


8 changes: 5 additions & 3 deletions .github/workflows/go_router_batch.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: "Creates Batch Release for go_router"

on:
schedule:
# Run every Monday at 8:00 AM
- cron: "0 8 * * 1"
workflow_dispatch:
# Uncomment the cron schedule when ready.
# schedule:
# # Run every Monday at 8:00 AM
# - cron: "0 8 * * 1"

jobs:
dispatch_release_pr:
Expand Down