Skip to content

Commit bf6c347

Browse files
authored
Merge pull request #169 from pods-framework/release/1.5.0
2 parents f7e01f4 + e293fad commit bf6c347

24 files changed

Lines changed: 2596 additions & 2384 deletions

.distignore

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Export ignore handling
2+
3+
# Directories
4+
/.git
5+
/.github
6+
/.wordpress-org
7+
/bin
8+
/dev
9+
/docs
10+
/github
11+
/tests
12+
/workspace
13+
14+
# Dot-files
15+
.babelrc
16+
.distignore
17+
.editorconfig
18+
.env
19+
.env.example
20+
.env.dist
21+
.env.docker
22+
.env.testing.slic
23+
.eslintignore
24+
.eslintrc.json
25+
.gitattributes
26+
.gitignore
27+
.jshintrc
28+
.nvmrc
29+
.phpstorm.meta.php
30+
.scrutinizer.yml
31+
.travis.yml
32+
33+
# Other files
34+
babel.config.js
35+
CODE_OF_CONDUCT.md
36+
codeception.dist.yml
37+
codeception.example.yml
38+
codeception.slic.yml
39+
CODEOWNERS
40+
composer.json
41+
CONTRIBUTING.md
42+
Gruntfile.js
43+
jest-setup-wordpress-globals.js
44+
jest.config.json
45+
jest.config.js
46+
package-lock.json
47+
package.json
48+
phpcs.xml
49+
phpcs.xml.dist
50+
phpunit.xml.dist
51+
README.md
52+
rollup.config.js
53+
TESTS.md
54+
webpack.common.js
55+
webpack.dev.js
56+
webpack.prod.js

.gitattributes

Lines changed: 59 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,73 @@
11
# Auto detect text files and perform LF normalization
22
* text=auto
33

4+
*.css linguist-generated=true
5+
*.min.css linguist-generated=true
6+
*.min.js linguist-generated=true
7+
*.snap linguist-generated=true
8+
tests/_support/_generated/* linguist-generated=true
9+
10+
# Export ignore handling
11+
12+
# Directories
13+
/.git export-ignore
14+
/.github export-ignore
15+
/.wordpress-org export-ignore
16+
/bin export-ignore
17+
/dev export-ignore
18+
/docs export-ignore
19+
/tests export-ignore
20+
421
# Ignore other files
522
/.env.* export-ignore
623
/codeception.* export-ignore
724
/composer.* export-ignore
825
/docs export-ignore
926
/phpcs.xml export-ignore
1027
/README.md export-ignore
11-
/tests export-ignore
1228
/TESTS.md export-ignore
1329
/vendor export-ignore
1430

15-
# Custom for Visual Studio
16-
*.cs diff=csharp
17-
*.sln merge=union
18-
*.csproj merge=union
19-
*.vbproj merge=union
20-
*.fsproj merge=union
21-
*.dbproj merge=union
31+
# Dot-files
32+
.babelrc export-ignore
33+
.distignore export-ignore
34+
.editorconfig export-ignore
35+
.env export-ignore
36+
.env.example export-ignore
37+
.env.dist export-ignore
38+
.env.docker export-ignore
39+
.env.testing.slic export-ignore
40+
.eslintignore export-ignore
41+
.eslintrc.json export-ignore
42+
.gitattributes export-ignore
43+
.gitignore export-ignore
44+
.jshintrc export-ignore
45+
.nvmrc export-ignore
46+
.phpstorm.meta.php export-ignore
47+
.scrutinizer.yml export-ignore
48+
.travis.yml export-ignore
2249

23-
# Standard to msysgit
24-
*.doc diff=astextplain
25-
*.DOC diff=astextplain
26-
*.docx diff=astextplain
27-
*.DOCX diff=astextplain
28-
*.dot diff=astextplain
29-
*.DOT diff=astextplain
30-
*.pdf diff=astextplain
31-
*.PDF diff=astextplain
32-
*.rtf diff=astextplain
33-
*.RTF diff=astextplain
50+
# Other files
51+
babel.config.js export-ignore
52+
CODE_OF_CONDUCT.md export-ignore
53+
codeception.dist.yml export-ignore
54+
codeception.example.yml export-ignore
55+
codeception.slic.yml export-ignore
56+
CODEOWNERS export-ignore
57+
composer.json export-ignore
58+
CONTRIBUTING.md export-ignore
59+
Gruntfile.js export-ignore
60+
jest-setup-wordpress-globals.js export-ignore
61+
jest.config.json export-ignore
62+
jest.config.js export-ignore
63+
package-lock.json export-ignore
64+
package.json export-ignore
65+
phpcs.xml export-ignore
66+
phpcs.xml.dist export-ignore
67+
phpunit.xml.dist export-ignore
68+
README.md export-ignore
69+
rollup.config.js export-ignore
70+
TESTS.md export-ignore
71+
webpack.common.js export-ignore
72+
webpack.dev.js export-ignore
73+
webpack.prod.js export-ignore

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

.github/workflows/phpcs.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/wordpress-plugin-deploy.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,8 @@ jobs:
1313
- name: Checkout the code
1414
uses: actions/checkout@v4
1515
- name: WordPress Plugin Deploy
16-
uses: 10up/action-wordpress-plugin-deploy@master
16+
uses: 10up/action-wordpress-plugin-deploy@develop
1717
env:
1818
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
1919
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
2020
VERSION: ${{ env.PLUGIN_VERSION }}
21-
- name: Send message to Slack API
22-
uses: archive/github-actions-slack@v2.7.0
23-
id: notify
24-
with:
25-
slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }}
26-
slack-channel: C02SWND14
27-
slack-text: The ${{ github.event.repository.name }} tag has been deployed to svn.wordpress.org 🎉
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "WordPress version checker"
2+
on:
3+
push:
4+
branches:
5+
- main
6+
- release/*
7+
schedule:
8+
- cron: '0 0 * * *'
9+
10+
permissions:
11+
issues: write
12+
13+
jobs:
14+
wordpress-version-checker:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: WordPress version checker
18+
uses: skaut/wordpress-version-checker@v1.0.0
19+
with:
20+
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/wporg-update-versions.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ on:
1717
minimum_php_version:
1818
description: 'Minimum PHP version'
1919
required: false
20-
minimum_mysql_version:
21-
description: 'Minimum MySQL version'
22-
required: false
2320
pull_request:
2421
paths:
2522
- 'package.json'

0 commit comments

Comments
 (0)