This repository has been archived by the owner on Dec 25, 2024. It is now read-only.
Fix Whitespaces #218
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: Fix Whitespaces | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' # Every day at 00:00 UTC | |
jobs: | |
fix: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Fix whitespaces | |
uses: andreasabel/fix-whitespace-action@v1 | |
with: | |
fix: true | |
verbose: true | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: Fix whitespaces | |
title: Fix whitespaces | |
branch: fix-whitespaces | |
delete-branch: true |