Enhance docstring to clarify the different parameters and their purpose #66
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: black-action | |
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the main branch | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
linter_name: | |
name: runner / black | |
runs-on: ubuntu-latest | |
steps: | |
- uses: SuffolkLITLab/ALActions/black-formatting@main | |
with: | |
MAKE_PR: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |