-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump funiq/geoPHP from 2.0.2 to 2.0.3 (#14)
* Bump funiq/geoPHP from 2.0.2 to 2.0.3 * Add autofix workflow * formatting * formatting
- Loading branch information
Showing
16 changed files
with
204 additions
and
131 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: "Auto-Fix code" | ||
# see https://github.com/dokuwiki/dokuwiki/blob/master/.github/workflows/autoFix.yml | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
autofix: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.2' | ||
tools: phpcbf, rector | ||
|
||
- name: retrieve script | ||
run: wget https://raw.github.com/splitbrain/dokuwiki-travis/master/travis.sh | ||
|
||
- name: Install DokuWiki | ||
env: | ||
CI_SERVER: 1 | ||
DOKUWIKI: master | ||
run: sh travis.sh | ||
|
||
- name: Setup Cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: _test/.rector-cache | ||
key: ${{ runner.os }}-rector-${{ hashFiles('_test/rector.php') }} | ||
|
||
- name: Run Rector | ||
run: rector process --config _test/rector.php --no-diffs | ||
|
||
- name: Run PHP CodeSniffer autofixing | ||
continue-on-error: true # even if not all errors are fixed, we want to create a PR | ||
run: phpcbf --standard=_test/phpcs_MigrationAdjustments.xml | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
commit-message: "🤖 Rector and PHPCS fixes" | ||
title: "🤖 Automatic code style fixes" | ||
body: | | ||
These changes were made automatically by running rector and phpcbf. | ||
Please carefully check the changes before merging. Please note that unit tests are not run for automated pull requests - so if in doubt, manually test the branch before merging. | ||
If you disagree with the changes, simply clean the code yourself and create a new pull request. This PR automatically closes when no more changes are suggested by rector and phpcbf. | ||
delete-branch: true | ||
branch: "bot/autofix" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: PHP Code Style | ||
|
||
on: [ push, pull_request ] | ||
on: [ pull_request ] | ||
|
||
jobs: | ||
phpcs: | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
base geophp | ||
author Mark C. Prins | ||
email [email protected] | ||
date 2023-07-14 | ||
date 2023-11-08 | ||
name geoPHP plugin for DokuWiki | ||
desc Provides access to the geoPHP library available at https://github.com/funiq/geoPHP. | ||
url https://www.dokuwiki.org/plugin:geophp |
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
Oops, something went wrong.