mirror of
https://github.com/Ryujinx/ryuko-ng.git
synced 2024-12-23 11:05:39 +00:00
5e2ce2abaa
* Allow formatter to run on forks * Sometimes RTFM does save some time * Automatically fix formatting for same repo PRs * Apply black formatting
60 lines
1.4 KiB
YAML
60 lines
1.4 KiB
YAML
name: Check formatting
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
checks: write
|
|
|
|
jobs:
|
|
black:
|
|
name: Python Black
|
|
runs-on: ubuntu-latest
|
|
if: github.event.pull_request.head.repo.full_name == github.repository
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
|
|
- name: Install black
|
|
run: pip install black
|
|
|
|
- name: Configure git
|
|
run: |
|
|
git config --global user.name github-actions[bot]
|
|
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com
|
|
|
|
- name: Run black
|
|
run: python -m black .
|
|
|
|
- name: Check if files have been modified
|
|
id: mod_check
|
|
run: |
|
|
[[ $(git status -s | wc -l) -le 1 ]] \
|
|
&& echo "is-dirty=false" >> "$GITHUB_OUTPUT" \
|
|
|| echo "is-dirty=true" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Commit and push changes
|
|
if: steps.mod_check.outputs.is-dirty == 'true'
|
|
run: |
|
|
git add .
|
|
git commit -m "Apply black formatting"
|
|
git push
|
|
|
|
fork-black:
|
|
name: Python Black
|
|
runs-on: ubuntu-latest
|
|
if: github.event.pull_request.head.repo.full_name != github.repository
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: psf/black@stable
|
|
|