fix #285
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: Форматировщик кода | |
on: | |
push: | |
branches: | |
- dev/PolGen-Lite | |
jobs: | |
push_format: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Проверка кода | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref_name }} | |
- name: Настройка Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Установка зависимостей | |
run: | | |
python -m pip install --upgrade pip | |
pip install black isort autoflake | |
- name: Запуск autoflake | |
run: autoflake --in-place --recursive . | |
- name: Запуск isort | |
run: isort . | |
- name: Запуск Black | |
run: black . | |
- name: Проверка наличия изменений | |
id: changes | |
run: | | |
if [ -n "$(git status --porcelain)" ]; then | |
echo "::set-output name=has_changes::true" | |
else | |
echo "::set-output name=has_changes::false" | |
fi | |
- name: Фиксация изменений | |
if: steps.changes.outputs.has_changes == 'true' | |
run: | | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add --all | |
git commit -m "Автоматическое форматирование кода." | |
- name: Создание Pull Request | |
if: steps.changes.outputs.has_changes == 'true' | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
delete-branch: true | |
body: "Автоматическое форматирование кода." | |
title: "Автоматическое форматирование кода." | |
commit-message: "Автоматическое форматирование кода." | |
branch: formatter/PolGen-Lite |