Bump express from 4.19.2 to 4.21.0 in /frontend #891
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
# A workflow to use https://github.com/marketplace/actions/fixed-issues-labeler | |
name: Label Closed Issues on Branches | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push on all but the master branch | |
push: | |
branches-ignore: | |
- 'master' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Label Fixed Issues | |
uses: gh-bot/fix-labeler@master | |
with: | |
token: ${{ github.token }} | |
label: 'dev' |