Bump express from 4.18.2 to 4.19.2 (#127) #65
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
# This workflow will increment version according to available changesets whenever a Release PR is created | |
name: Version | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: Version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@master | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
ssh-key: ${{ secrets.HFC_BOT_SSH_KEY }} | |
- name: git config | |
run: | | |
git config user.name hfc-bot | |
git config user.email [email protected] | |
- name: Setup Node.js 12.x | |
uses: actions/setup-node@master | |
with: | |
node-version: 12.x | |
cache: 'yarn' | |
- name: 📦 Install dependencies | |
run: yarn install --immutable | |
- name: Create Release Pull Request | |
uses: changesets/action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |