chore(deps): bump braces and gulp #30
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
on: [pull_request] | |
name: Update dist folder | |
jobs: | |
update-dist-src: | |
if: "${{ contains(github.event.pull_request.labels.*.name, 'autorelease: pending') }}" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
token: ${{ secrets.GOOGLEWORKSPACE_BOT_TOKEN }} | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: npm ci | |
- name: Generate dist | |
run: npm run dist | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "chore: Update dist/ directory" | |
commit_user_name: Google Workspace Bot | |
commit_user_email: [email protected] | |
commit_author: Google Workspace Bot <[email protected]> |