Skip to content

release-leafygreen-ui #227

release-leafygreen-ui

release-leafygreen-ui #227

name: Repository Dispatch
on:
repository_dispatch:
types: [release-leafygreen-ui]
jobs:
update-packages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: post-release/update-packages
# Only setup & build if there was no build cache hit
- name: Use Node 16
uses: actions/setup-node@v3
if: ${{ steps.build-cache.outputs.cache-hit != 'true' }}
with:
node-version: '16'
cache: yarn
cache-dependency-path: 'yarn.lock'
- run: yarn install
- run: yarn update-packages '${{ github.event.client_payload.packages }}'
- name: pull-request
uses: repo-sync/pull-request@v2
with:
destination_branch: 'staging'
pr_title: 'Automated PR: Update packages'
github_token: ${{ secrets.GITHUB_TOKEN }}