This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
Bump Examples #128
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: Bump Examples | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 4' | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- name: bump examples | |
run: node ./.github/scripts/bump-examples.js | |
- name: submit pull request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
base: main | |
branch: action/bump-examples | |
commit-message: 'build(deps): update calcite components version' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
assignees: ${{ secrets.PRIMARY_MAINTAINERS }} | |
title: 'build(deps): update calcite components version' | |
body: This PR was automatically generated by the bump-examples GitHub Action | |
delete-branch: true |