Skip to content
This repository was archived by the owner on Mar 12, 2022. It is now read-only.

Commit 3bf78f1

Browse files
committed
Merge branch 'develop' into trunk
2 parents 7b1f57e + 62498bb commit 3bf78f1

19 files changed

+517
-171
lines changed

.distignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Directories
2+
/.git
3+
/.github
4+
/.wordpress-org
5+
/bin
6+
/node_modules
7+
/tests
8+
9+
# Files
10+
.distignore
11+
.gitignore
12+
CHANGELOG.md
13+
CODE_OF_CONDUCT.md
14+
CONTRIBUTING.md
15+
CREDITS.md
16+
LICENSE.md
17+
README.md
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Plugin asset/readme update
2+
3+
on:
4+
push:
5+
branches:
6+
- trunk
7+
8+
jobs:
9+
trunk:
10+
name: Push to trunk
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@master
14+
- name: WordPress.org plugin asset/readme update
15+
uses: 10up/action-wordpress-plugin-asset-update@stable
16+
env:
17+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
18+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy to WordPress.org
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
tag:
9+
name: New release
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v2
14+
- name: WordPress Plugin Deploy
15+
id: deploy
16+
uses: 10up/action-wordpress-plugin-deploy@stable
17+
with:
18+
generate-zip: true
19+
env:
20+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
21+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
22+
- name: Upload release asset
23+
uses: actions/upload-release-asset@v1
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
with:
27+
upload_url: ${{ github.event.release.upload_url }}
28+
asset_path: ${{github.workspace}}/${{ github.event.repository.name }}.zip
29+
asset_name: ${{ github.event.repository.name }}.zip
30+
asset_content_type: application/zip

.github/workflows/lint.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Linting
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
- trunk
8+
pull_request:
9+
branches:
10+
- develop
11+
12+
jobs:
13+
phpcs:
14+
name: phpcs
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v2
19+
- name: PHPCS check
20+
uses: 10up/wpcs-action@stable

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
node_modules
2+
bower_components
3+
release
4+
build
5+
vendor
6+
composer.lock
7+
phpunit.xml
8+
.idea
9+
10+
# Editors
11+
*.esproj
12+
*.tmproj
13+
*.tmproject
14+
tmtags
15+
.*.sw[a-z]
16+
*.un~
17+
Session.vim
18+
*.swp
19+
20+
# Mac OSX
21+
.DS_Store
22+
._*
23+
.Spotlight-V100
24+
.Trashes
25+
26+
# Windows
27+
Thumbs.db
28+
Desktop.ini
29+
30+
##
31+
*.p8
32+
.env

.wordpress-org/banner-1544x500.png

36.7 KB
Loading

.wordpress-org/banner-772x250.png

16.6 KB
Loading

.wordpress-org/icon-128x128.png

4.6 KB
Loading

.wordpress-org/icon-256x256.png

8.87 KB
Loading

0 commit comments

Comments
 (0)