Remove codestyle for now
This commit is contained in:
parent
f7b18f7d00
commit
52ac5b459b
|
@ -1,44 +0,0 @@
|
||||||
# This is a basic workflow to help you get started with Actions
|
|
||||||
|
|
||||||
name: CodeStyle
|
|
||||||
|
|
||||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
|
||||||
# events but only for the master branch
|
|
||||||
on: [push]
|
|
||||||
|
|
||||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
||||||
jobs:
|
|
||||||
php-cs-fixer:
|
|
||||||
name: PHP-CS-Fixer
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- name: PHP-CS-Fixer
|
|
||||||
uses: docker://oskarstark/php-cs-fixer-ga
|
|
||||||
with:
|
|
||||||
args: --config="./tests/php-cs-fixer/php_cs.config"
|
|
||||||
|
|
||||||
- name: Config git
|
|
||||||
run: |
|
|
||||||
git config --global user.email "raspbianfrance@gmail.com"
|
|
||||||
git config --global user.name "Github Actions Bot"
|
|
||||||
|
|
||||||
- name: Commit changes
|
|
||||||
run: |
|
|
||||||
git add --all
|
|
||||||
git commit -m "Fix codestyle." || exit 0
|
|
||||||
|
|
||||||
- name: Get branch name
|
|
||||||
run: |
|
|
||||||
git_branch=${{ github.ref }}
|
|
||||||
git_branch=${git_branch#refs/heads/}
|
|
||||||
echo $git_branch
|
|
||||||
|
|
||||||
- name: Push changes # push the modif to repo
|
|
||||||
uses: ad-m/github-push-action@master
|
|
||||||
with:
|
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
force: true
|
|
||||||
branch: $git_branch
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue