-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from YunoHost/black
ci: add autoblacks actions
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Check / auto apply Black | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
black: | ||
name: Check / auto apply black | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Check files using the black formatter | ||
uses: psf/black@stable | ||
id: black | ||
with: | ||
options: "." | ||
continue-on-error: true | ||
- shell: pwsh | ||
id: check_files_changed | ||
run: | | ||
# Diff HEAD with the previous commit | ||
$diff = git diff | ||
$HasDiff = $diff.Length -gt 0 | ||
Write-Host "::set-output name=files_changed::$HasDiff" | ||
- name: Create Pull Request | ||
if: steps.check_files_changed.outputs.files_changed == 'true' | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
title: "Format Python code with Black" | ||
commit-message: ":art: Format Python code with Black" | ||
body: | | ||
This pull request uses the [psf/black](https://github.com/psf/black) formatter. | ||
base: ${{ github.head_ref }} # Creates pull request onto pull request or commit branch | ||
branch: actions/black |