plugin-flow-builder: bot action as follow up, first node in a flow, after conditionals etc #1911
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
#copied from https://github.com/pre-commit/action | |
name: pre-commit | |
on: | |
pull_request: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- uses: actions/setup-node@v2 | |
- uses: pre-commit/action@v2.0.3 | |
# this will push back fixes to the pull request branch. | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |