2021-07-02 10:07:05 +03:00
|
|
|
# GitHub Action that uses Black to reformat all Python code and submits a PR
|
|
|
|
# in regular intervals. Inspired by: https://github.com/cclauss/autoblack
|
|
|
|
|
|
|
|
name: autoblack
|
|
|
|
on:
|
2021-07-02 10:22:43 +03:00
|
|
|
# schedule:
|
|
|
|
# cron: '0 8 * * 5' # every Friday at 8am UTC
|
2021-07-02 10:10:24 +03:00
|
|
|
workflow_dispatch: # allow manual trigger
|
2021-07-02 10:07:05 +03:00
|
|
|
|
|
|
|
jobs:
|
2021-07-02 10:37:35 +03:00
|
|
|
autoblack:
|
2021-07-02 10:07:05 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: ${{ github.head_ref }}
|
|
|
|
- uses: actions/setup-python@v2
|
|
|
|
- run: pip install black
|
|
|
|
- name: Auto-format code if needed
|
2021-07-02 10:37:35 +03:00
|
|
|
run: black spacy
|
|
|
|
- name: Check for modified files
|
|
|
|
id: git-check
|
|
|
|
run: echo ::set-output name=modified::$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi)
|
|
|
|
- name: Commit modified files
|
|
|
|
if: steps.git-check.outputs.modified == 'true'
|
2021-07-02 10:07:05 +03:00
|
|
|
run: |
|
2021-07-02 10:30:59 +03:00
|
|
|
git config --global user.name 'explosion-bot'
|
|
|
|
git config --global user.email 'explosion-bot@users.noreply.github.com'
|
|
|
|
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
|
2021-07-02 10:07:05 +03:00
|
|
|
git status
|
2021-07-02 10:27:48 +03:00
|
|
|
git add -A
|
|
|
|
git commit -am "Auto-format code with black"
|
2021-07-02 10:07:05 +03:00
|
|
|
- name: Create Pull Request
|
2021-07-02 10:37:35 +03:00
|
|
|
if: steps.git-check.outputs.modified == 'true'
|
2021-07-02 10:07:05 +03:00
|
|
|
uses: peter-evans/create-pull-request@v3
|
|
|
|
with:
|
|
|
|
title: Auto-format code with black
|
|
|
|
labels: meta
|
|
|
|
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
|
|
|
|
body: _This PR is auto-generated._
|
2021-07-02 10:30:59 +03:00
|
|
|
branch: autoblack
|
|
|
|
delete-branch: true
|
2021-07-02 10:07:05 +03:00
|
|
|
draft: false
|
|
|
|
- name: Check outputs
|
2021-07-02 10:37:35 +03:00
|
|
|
if: steps.git-check.outputs.modified == 'true'
|
2021-07-02 10:07:05 +03:00
|
|
|
run: |
|
|
|
|
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
|
|
|
|
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
|