Fix pynonymizer help, restore stdin test #106
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: autoblack incoming PRs | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: "3.10" | |
- name: Install Black | |
run: pip install "black~=22.6.0" | |
- run: black --check . | |
- name: If needed, commit black changes to the pull request | |
if: failure() | |
run: | | |
black . | |
git config --global user.name 'autoblack' | |
git config --global user.email '<>' | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | |
git checkout $GITHUB_HEAD_REF | |
git commit -am "fixup: Format Python code with Black" | |
git push |