Skip to content

Merge pull request #19 from Jagdish-J-P/dependabot/github_actions/act… #56

Merge pull request #19 from Jagdish-J-P/dependabot/github_actions/act…

Merge pull request #19 from Jagdish-J-P/dependabot/github_actions/act… #56

Workflow file for this run

name: "Code-Style Fixer"
on:
push:
branches: [ main ]
jobs:
fix:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Checking PHP Syntax
uses: TheDragonCode/codestyler@v3.9.0
with:
# This token uses GitHub Actions to execute code.
# Required when `fix` is `true`.
# The default value is `${{ secrets.GITHUB_TOKEN }}`.
github_token: ${{ secrets.TOKEN }}
# Activates the mode of accepting changes with the creation
# of commits.
fix: true
# Activates the actualization of the `.editorconfig` file.
# Works only when the `fix` option is enabled.
# By default, true
editorconfig: true
# Activates Dependabot file processing.
# Works only when the `fix` option is enabled.
# By default, true
dependabot: true
# Normalizing `composer.json`.
# Works only when the `fix` option is enabled.
# By default, true
normalize: true