Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
dolibarr-18.0.4 /
.github /
workflows /
Delete
Unzip
Name
Size
Permission
Date
Action
code_quality_qodana.yml
522
B
-rw-r--r--
2023-12-15 13:44
doxygen-gh-pages.yml.disabled
984
B
-rw-r--r--
2023-12-15 13:44
exakat.yml.disabled
1.23
KB
-rw-r--r--
2023-12-15 13:44
github_ci_php71_pgsql.yml.disabled
17.78
KB
-rw-r--r--
2023-12-15 13:44
github_ci_php81_mysql.yml.disabled
16.93
KB
-rw-r--r--
2023-12-15 13:44
greetings-pr.yml.disabled
450
B
-rw-r--r--
2023-12-15 13:44
phpcs.yml
801
B
-rw-r--r--
2023-12-15 13:44
phpcsfixer.yml.disabled
1.4
KB
-rw-r--r--
2023-12-15 13:44
stale-issues-safe.yml
1.24
KB
-rw-r--r--
2023-12-15 13:44
Save
Rename
name: GitHub CI PHPCS and PHPCBF on: push #on: # push: # paths: # - '**.php' jobs: #filesChanged: # uses: ./.github/workflows/files_changed.yaml # with: # folder_path: .* linter_name: name: Run & fix PHP Code Sniffer runs-on: ubuntu-latest #needs: filesChanged steps: - uses: actions/checkout@v3 with: fetch-depth: 10 - name: echo Get list of all changed files run: | #echo ${{ needs.filesChanged.outputs.all_changed_files }} #echo boolean_output=${{ needs.filesChanged.outputs.boolean_output }} echo github.head_ref=${{github.head_ref}} echo github.base_ref=${{github.base_ref}} echo github.ref_name=${{github.ref_name}} - uses: eldy/phpcsfixer-action@master with: github_token: ${{ secrets.github_token }} use_default_configuration_file: false phpcs_standard: 'dev/setup/codesniffer/ruleset.xml' phpcs_head_ref: ${{github.head_ref}} phpcs_base_ref: ${{github.base_ref}} phpcs_ref_name: ${{github.ref_name}} phpcs_github_event_name: ${{github.event_name}} phpcs_files: ${{ needs.filesChanged.outputs.all_changed_files }} - uses: stefanzweifel/git-auto-commit-action@v4 # auto commit the fixes action for GitHub with: commit_message: Fix PHPCS errors by GitHub PHPCSfixer action