Skip to content

[TASK] Introduce pre commit hooks #30

[TASK] Introduce pre commit hooks

[TASK] Introduce pre commit hooks #30

Workflow file for this run

name: Check and Fix Whitespace
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install pre-commit
run: pip install pre-commit
- name: Configure Git
run: |
git config user.name "github-actions"
git config user.email "[email protected]"
- name: Run pre-commit hooks to fix issues
id: pre-commit
run: |
pre-commit run --all-files --hook-stage=manual || true
# Stage all changes
git add .
# Commit changes if there are any
if git diff --cached --quiet; then
echo "No changes to commit"
else
git commit -m "Fix whitespace issues" || echo "No changes to commit"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Push changes
if: success() && github.event_name == 'push'
run: |
# Check if running on a pull request
if [ -n "${{ github.head_ref }}" ]; then
echo "Pushing changes to branch: ${{ github.head_ref }}"
git push origin "${{ github.head_ref }}" || echo "Failed to push changes"
else
echo "No pull request head ref available, skipping push"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Debug
run: |
echo "Git status:"
git status
echo "Git diff:"
git diff --cached