-
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.
- Loading branch information
1 parent
2c2a2eb
commit e86a5cc
Showing
14 changed files
with
83 additions
and
176 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 |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
- name: 'Setup PHP' | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.1' | ||
php-version: '8.3' | ||
tools: composer | ||
|
||
- name: 'Get Composer Cache Directory' | ||
|
@@ -26,7 +26,7 @@ jobs: | |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
- name: 'Cache Composer Dependencies' | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: composer | ||
|
@@ -35,9 +35,9 @@ jobs: | |
shell: bash | ||
run: composer install --no-interaction | ||
|
||
- name: 'Rector PHP Code' | ||
shell: bash | ||
run: composer rector-fix | ||
# - name: 'Rector PHP Code' | ||
# shell: bash | ||
# run: composer rector-fix | ||
|
||
- name: 'Lint PHP Code' | ||
shell: bash | ||
|
@@ -52,8 +52,7 @@ jobs: | |
run: composer test-functional | ||
|
||
- name: 'Create pull-request' | ||
id: cpr | ||
uses: peter-evans/[email protected] | ||
uses: peter-evans/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: "[automated] Apply Coding Standard" | ||
|
@@ -62,9 +61,3 @@ jobs: | |
title: '[automated] Apply Coding Standard' | ||
labels: 'automated' | ||
delete-branch: true | ||
|
||
- name: 'Enable Pull Request Merge when ready' | ||
if: steps.cpr.outputs.pull-request-operation == 'created' | ||
run: gh pr merge --auto "${{ steps.cpr.outputs.pull-request-number }}" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE `sys_doctrine_migrationstatus` ( | ||
version varchar(255) NOT NULL, | ||
executed_at datetime, | ||
execution_time integer, | ||
|
||
PRIMARY KEY (version) | ||
) ENGINE=InnoDB; |
Oops, something went wrong.