Skip to content

Commit

Permalink
Merge pull request #169 from pods-framework/release/1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0ttkclark authored Mar 29, 2024
2 parents f7e01f4 + e293fad commit bf6c347
Show file tree
Hide file tree
Showing 24 changed files with 2,596 additions and 2,384 deletions.
56 changes: 56 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Export ignore handling

# Directories
/.git
/.github
/.wordpress-org
/bin
/dev
/docs
/github
/tests
/workspace

# Dot-files
.babelrc
.distignore
.editorconfig
.env
.env.example
.env.dist
.env.docker
.env.testing.slic
.eslintignore
.eslintrc.json
.gitattributes
.gitignore
.jshintrc
.nvmrc
.phpstorm.meta.php
.scrutinizer.yml
.travis.yml

# Other files
babel.config.js
CODE_OF_CONDUCT.md
codeception.dist.yml
codeception.example.yml
codeception.slic.yml
CODEOWNERS
composer.json
CONTRIBUTING.md
Gruntfile.js
jest-setup-wordpress-globals.js
jest.config.json
jest.config.js
package-lock.json
package.json
phpcs.xml
phpcs.xml.dist
phpunit.xml.dist
README.md
rollup.config.js
TESTS.md
webpack.common.js
webpack.dev.js
webpack.prod.js
78 changes: 59 additions & 19 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,33 +1,73 @@
# Auto detect text files and perform LF normalization
* text=auto

*.css linguist-generated=true
*.min.css linguist-generated=true
*.min.js linguist-generated=true
*.snap linguist-generated=true
tests/_support/_generated/* linguist-generated=true

# Export ignore handling

# Directories
/.git export-ignore
/.github export-ignore
/.wordpress-org export-ignore
/bin export-ignore
/dev export-ignore
/docs export-ignore
/tests export-ignore

# Ignore other files
/.env.* export-ignore
/codeception.* export-ignore
/composer.* export-ignore
/docs export-ignore
/phpcs.xml export-ignore
/README.md export-ignore
/tests export-ignore
/TESTS.md export-ignore
/vendor export-ignore

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union
# Dot-files
.babelrc export-ignore
.distignore export-ignore
.editorconfig export-ignore
.env export-ignore
.env.example export-ignore
.env.dist export-ignore
.env.docker export-ignore
.env.testing.slic export-ignore
.eslintignore export-ignore
.eslintrc.json export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.jshintrc export-ignore
.nvmrc export-ignore
.phpstorm.meta.php export-ignore
.scrutinizer.yml export-ignore
.travis.yml export-ignore

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
# Other files
babel.config.js export-ignore
CODE_OF_CONDUCT.md export-ignore
codeception.dist.yml export-ignore
codeception.example.yml export-ignore
codeception.slic.yml export-ignore
CODEOWNERS export-ignore
composer.json export-ignore
CONTRIBUTING.md export-ignore
Gruntfile.js export-ignore
jest-setup-wordpress-globals.js export-ignore
jest.config.json export-ignore
jest.config.js export-ignore
package-lock.json export-ignore
package.json export-ignore
phpcs.xml export-ignore
phpcs.xml.dist export-ignore
phpunit.xml.dist export-ignore
README.md export-ignore
rollup.config.js export-ignore
TESTS.md export-ignore
webpack.common.js export-ignore
webpack.dev.js export-ignore
webpack.prod.js export-ignore
67 changes: 0 additions & 67 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/phpcs.yml

This file was deleted.

9 changes: 1 addition & 8 deletions .github/workflows/wordpress-plugin-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,8 @@ jobs:
- name: Checkout the code
uses: actions/checkout@v4
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@master
uses: 10up/action-wordpress-plugin-deploy@develop
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
VERSION: ${{ env.PLUGIN_VERSION }}
- name: Send message to Slack API
uses: archive/[email protected]
id: notify
with:
slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }}
slack-channel: C02SWND14
slack-text: The ${{ github.event.repository.name }} tag has been deployed to svn.wordpress.org 🎉
20 changes: 20 additions & 0 deletions .github/workflows/wordpress-version-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "WordPress version checker"
on:
push:
branches:
- main
- release/*
schedule:
- cron: '0 0 * * *'

permissions:
issues: write

jobs:
wordpress-version-checker:
runs-on: ubuntu-latest
steps:
- name: WordPress version checker
uses: skaut/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 0 additions & 3 deletions .github/workflows/wporg-update-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ on:
minimum_php_version:
description: 'Minimum PHP version'
required: false
minimum_mysql_version:
description: 'Minimum MySQL version'
required: false
pull_request:
paths:
- 'package.json'
Expand Down
Loading

0 comments on commit bf6c347

Please sign in to comment.