-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix/ECP-1400-bad-ct1-paths
- Loading branch information
Showing
1,114 changed files
with
63,679 additions
and
107,223 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,54 @@ | ||
/lang/*.mo | ||
/lang/*.pot | ||
/lang/*.txt | ||
/node_modules/clipboard/dist/clipboard.min.js | ||
/node_modules/intro.js/*.css | ||
/node_modules/intro.js/*.js | ||
/node_modules/mt-a11y-dialog/*.min.js | ||
/README.md | ||
/src/admin-views/**/* | ||
/src/Common/**/* | ||
/src/deprecated/**/* | ||
/src/functions/**/* | ||
/src/modules/icons/* | ||
/src/resources/css/**/*.min.css | ||
/src/resources/images/**/* | ||
/src/resources/js/*.js | ||
/src/resources/js/admin/*.js | ||
/src/resources/js/app/main.min.js | ||
/src/resources/js/app/modules.min.js | ||
/src/resources/js/app/vendor.min.js | ||
/src/resources/js/utils/*.js | ||
/src/Tribe/**/* | ||
/src/views/**/* | ||
/tribe-autoload.php | ||
/vendor/attrchange/js/*.js | ||
/vendor/autoload.php | ||
/vendor/composer/* | ||
/vendor/datatables/**/*.png | ||
/vendor/datatables/datatables*.css | ||
/vendor/datatables/datatables*.js | ||
/vendor/firebase/php-jwt/src/*.php | ||
/vendor/handlebars/*.js | ||
/vendor/jquery-tribe-timepicker/**/*.css | ||
/vendor/jquery-tribe-timepicker/**/*.min.js | ||
/vendor/jquery-tribe-timepicker/**/*.png | ||
/vendor/jquery/**/* | ||
/vendor/ky/* | ||
/vendor/momentjs/*.min.js | ||
/vendor/monolog/monolog/src/*.php | ||
/vendor/monolog/monolog/src/**/*.php | ||
/vendor/psr/log/Psr/Log/*.php | ||
/vendor/tooltipster/**/*.min.* | ||
/vendor/tribe-select2/*.css | ||
/vendor/tribe-select2/*.gif | ||
/vendor/tribe-select2/*.min.js | ||
/vendor/tribe-select2/*.png | ||
/vendor/tribe-selectWoo/dist/css/*.css | ||
/vendor/tribe-selectWoo/dist/js/*.js | ||
/vendor/vendor-prefixed | ||
/vendor/vendor-prefixed/**/*.js | ||
/vendor/vendor-prefixed/**/*.php | ||
/vendor/vendor-prefixed/autoload-classmap.php | ||
/vendor/vendor-prefixed/autoload.php | ||
/vendor/vendor-prefixed/stellarwp/**/* |
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,12 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_style = tab | ||
insert_final_newline = false | ||
trim_trailing_whitespace = true | ||
|
||
[**.{jshintrc,json,scss-lint,yml}] | ||
indent_style = space | ||
indent_size = 2 |
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 @@ | ||
src/resources/js/**/*.min.js |
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,27 @@ | ||
### 🎫 Ticket | ||
|
||
[TICKET_ID] | ||
<!-- Ticket ID, if there's any put it between brackets --> | ||
|
||
### 🗒️ Description | ||
|
||
<!-- | ||
Please describe what you have changed or added | ||
What types of changes does your code introduce? | ||
Bug fix (non-breaking change which fixes an issue) | ||
New feature (non-breaking change which adds functionality) | ||
Include any important information for reviewers | ||
--> | ||
|
||
### 🎥 Artifacts <!-- if applicable--> | ||
<!-- 🎥 screencast(s) or 📷 screenshot(s) --> | ||
|
||
### ✔️ Checklist | ||
- [ ] Changelog entry in the `readme.txt` file. | ||
- [ ] Code is covered by **NEW** `wpunit` or `integration` tests. | ||
- [ ] Code is covered by **EXISTING** `wpunit` or `integration` tests. | ||
- [ ] Are all the **required** tests passing? | ||
- [ ] Automated code review comments are addressed. | ||
- [ ] Have you added Artifacts? | ||
- [ ] Check the base branch for your PR. | ||
- [ ] Add your PR to the project board for the release. |
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,14 @@ | ||
name: 'Link to Release Project' | ||
on: [pull_request] | ||
jobs: | ||
link-project: | ||
name: 'Link to Release Project' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: the-events-calendar/gh-action-project-link@main | ||
with: | ||
github-token: ${{ secrets.GHA_BOT_TOKEN_MANAGER }} | ||
template-project-url: https://github.com/orgs/the-events-calendar/projects/29 | ||
project-owner: 'tec-bot' | ||
base-branch-pattern: 'release/*' | ||
name-prefix-remove: 'release/' |
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,26 +1,9 @@ | ||
name: 'PHP CodeSniffer' | ||
on: | ||
pull_request: | ||
paths: | ||
- 'src/**.php' | ||
- '*.php' | ||
name: 'PHPCS' | ||
on: [pull_request] | ||
jobs: | ||
phpcs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
with: | ||
fetch-depth: 100 | ||
- name: Get Composer Cache Directory | ||
id: composer-cache | ||
run: | | ||
echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
- uses: actions/cache@v1 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- uses: the-events-calendar/action-tribe-phpcs@master | ||
with: | ||
github-bot-token: ${{ secrets.GH_BOT_TOKEN }} | ||
uses: stellarwp/github-actions/.github/workflows/phpcs.yml@main | ||
with: | ||
ref: ${{ github.event.inputs.ref }} | ||
secrets: | ||
access-token: ${{ secrets.GH_BOT_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
16.6.1 | ||
18.13.0 |
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,17 +1,3 @@ | ||
{ | ||
"extends": "@the-events-calendar/product-taskmaster/config/stylelint", | ||
"rules": { | ||
"font-family-no-missing-generic-family-keyword": [ | ||
true, | ||
{ | ||
"ignoreFontFamilies": [ "dashicons" ], | ||
} | ||
], | ||
"property-no-unknown": [ | ||
true, | ||
{ | ||
"ignoreProperties": [ "font-smoothing" ] | ||
} | ||
] | ||
} | ||
"extends": "@the-events-calendar/product-taskmaster/config/stylelint" | ||
} |
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
Oops, something went wrong.