release-leafygreen-ui #222
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
name: Repository Dispatch | |
on: | |
repository_dispatch: | |
types: [release-leafygreen-ui] | |
jobs: | |
update-packages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# 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 | |
- uses: actions/github-script@v1 | |
with: | |
script: | | |
yarn update-packages ${{ github.event.client_payload }} | |
- name: pull-request | |
uses: repo-sync/pull-request@v2 | |
with: | |
destination_branch: 'staging' | |
pr_title: 'Automated PR: update packages' | |
github_token: ${{ secrets.GITHUB_TOKEN }} |