chore(deps): bump virtualenv from 20.26.2 to 20.26.6 #1384
Workflow file for this run
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: Generate Docs | |
on: | |
push: | |
pull_request: | |
jobs: | |
docs: | |
name: Generate Docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- uses: actions/checkout@v3 | |
# https://github.com/stefanzweifel/git-auto-commit-action#commits-made-by-this-action-do-not-trigger-new-workflow-runs | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run doc generation | |
uses: npalm/[email protected] | |
- name: Commit doc changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "docs: automated doc update" | |
file_pattern: README.md |