-
-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial rebrand commit generated from the 1.0 rebrand branch patch file
- Loading branch information
1 parent
3b471b9
commit cfa763b
Showing
826 changed files
with
8,106 additions
and
4,257 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
--- | ||
name: "🚨 Immediate Support" | ||
about: 'I use October and it just broke! Help me!' | ||
about: 'I use Winter and it just broke! Help me!' | ||
--- | ||
|
||
This repository is only for reporting reproducible bugs or problems. If you need support, please use the following options: | ||
|
||
- Slack: https://octobercms.slack.com (Get an invite: https://octobercms-slack.herokuapp.com/) | ||
- Live chat (IRC): https://octobercms.com/chat - **Note:** Not as active as Slack | ||
- Forum: https://octobercms.com/forum | ||
- Stack Overflow: https://stackoverflow.com/questions/tagged/octobercms | ||
- Slack: https://discord.gg/D5MFSPH6Ux | ||
- Stack Overflow: https://stackoverflow.com/questions/tagged/wintercms | ||
|
||
If you rely on OctoberCMS for your business consider purchasing a paid support plan! Send an email to octobercms@luketowers.ca to get started. | ||
If you rely on Winter CMS for your business consider purchasing a paid support plan! Send an email to wintercms@luketowers.ca to get started. | ||
|
||
Thanks! |
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,6 +1,6 @@ | ||
--- | ||
name: "🛒 Marketplace Support" | ||
about: 'For reporting any issues with the marketplace, send an email to [email protected]' | ||
about: 'For reporting any issues with the marketplace, send an email to [email protected]' | ||
--- | ||
|
||
All marketplace support issues will be addressed through email support. | ||
|
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,12 +1,11 @@ | ||
--- | ||
name: "⚠️ General Support" | ||
about: 'This repository is only for reporting bugs or problems. If you need help using OctoberCMS, see: https://octobercms.com/support' | ||
about: 'This repository is only for reporting bugs or problems. If you need help using Winter CMS, see: https://wintercms.com/support' | ||
--- | ||
|
||
This repository is only for reporting bugs or problems. If you need support, please use the following options: | ||
|
||
- Forum: https://octobercms.com/forum | ||
- Slack: https://octobercms.slack.com (Get an invite: https://octobercms-slack.herokuapp.com/) | ||
- Stack Overflow: https://stackoverflow.com/questions/tagged/octobercms | ||
- Discord: https://discord.gg/D5MFSPH6Ux | ||
- Stack Overflow: https://stackoverflow.com/questions/tagged/wintercms | ||
|
||
Thanks! |
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 was deleted.
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 |
---|---|---|
|
@@ -8,14 +8,33 @@ jobs: | |
runs-on: ubuntu-latest | ||
name: PHP | ||
steps: | ||
- name: Cancel previous incomplete runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout changes | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install PHP and PHP Code Sniffer | ||
|
||
- name: Install PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '7.3' | ||
tools: phpcs | ||
php-version: 7.2 | ||
extensions: curl, fileinfo, gd, mbstring, openssl, pdo, pdo_sqlite, sqlite3, xml, zip | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --no-interaction --no-progress --no-suggest | ||
|
||
- name: Reset Winter modules and library | ||
run: | | ||
git reset --hard HEAD | ||
rm -rf ./vendor/winter/storm | ||
wget https://github.com/wintercms/storm/archive/develop.zip -O ./vendor/winter/develop.zip | ||
unzip ./vendor/winter/develop.zip -d ./vendor/winter | ||
mv ./vendor/winter/storm-develop ./vendor/winter/storm | ||
composer dump-autoload | ||
- name: Run code quality checks | ||
run: ./.github/workflows/utilities/phpcs-pr ${{ github.base_ref }} | ||
run: | | ||
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" && git fetch | ||
./vendor/bin/phpcs --colors -nq --report="full" --extensions="php" $(git diff --name-only --diff-filter=ACMR origin/${{ github.base_ref }} HEAD) |
Oops, something went wrong.