diff --git a/.github/workflows/cc.yml b/.github/workflows/cc.yml new file mode 100644 index 0000000..ae5e9bd --- /dev/null +++ b/.github/workflows/cc.yml @@ -0,0 +1,35 @@ +name: CodeCleanup + +on: [pull_request] + +jobs: + cleanup_tasks: + runs-on: ubuntu-latest + + steps: + - name: Cloning the repository + uses: actions/checkout@v1 + with: + fetch-depth: 1 + - name: Making Django Migrations + uses: creyD/makemigrations_action@master + with: + dependencypath: "requirements.txt" + branch: ${{ github.head_ref }} + managepath: "src/manage.py" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Applying PEP-8 to all files + uses: creyD/action_autopep8@master + with: + dependencies: "requirements.txt" + branch: ${{ github.head_ref }} + autoparameters: "--max-line-length 250 -a" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Prettify the JS Code + uses: creyD/prettier_action@master + with: + branch: ${{ github.head_ref }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml deleted file mode 100644 index 1bf8df8..0000000 --- a/.github/workflows/prettier.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Prettier for JS Code - -on: [push, pull_request] - -jobs: - cleanup_tasks: - runs-on: ubuntu-latest - - steps: - - name: Cloning the repository - uses: actions/checkout@master - with: - fetch-depth: 1 - - name: Prettify the JS Code - uses: creyD/prettier_action@master - with: - branch: ${{ github.head_ref }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}