Skip to content

Commit

Permalink
Merge pull request #16 from mailchimp/feature/1-add-actions
Browse files Browse the repository at this point in the history
Add WP Version Checker and Build Release Zip workflows
  • Loading branch information
jeffpaul authored May 31, 2024
2 parents 3dd04ab + e066971 commit c8a14f7
Show file tree
Hide file tree
Showing 5 changed files with 92 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Directories to ignore
/.git
/.github
/.wordpress-org
/node_modules
/tests
/vendor

# Files to ignore
/.*
/CHANGELOG.md
/CODE_OF_CONDUCT.md
/composer.json
/composer.lock
/CONTRIBUTING.md
/CREDITS.md
/LICENSE.md
/package-lock.json
/package.json
/phpcs-compat.xml
/phpcs.xml
/README.md
19 changes: 19 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/.github export-ignore
/.wordpress-org export-ignore
/node_modules export-ignore
/tests export-ignore
/vendor export-ignore

/.* export-ignore
/CHANGELOG.md export-ignore
/CODE_OF_CONDUCT.md export-ignore
/composer.json export-ignore
/composer.lock export-ignore
/CONTRIBUTING.md export-ignore
/CREDITS.md export-ignore
/LICENSE.md export-ignore
/package-lock.json export-ignore
/package.json export-ignore
/phpcs-compat.xml export-ignore
/phpcs.xml export-ignore
/README.md export-ignore
22 changes: 22 additions & 0 deletions .github/workflows/build-release-zip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build release zip

on:
workflow_dispatch:
workflow_call:
push:
branches:
- main

jobs:
build:
name: Build release zip
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Generate ZIP file
uses: 10up/action-wordpress-plugin-build-zip@stable
env:
SLUG: mailchimp
25 changes: 25 additions & 0 deletions .github/workflows/wordpress-version-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: WordPress version checker

on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
schedule:
- cron: '0 0 * * 1'

permissions:
issues: write

jobs:
wordpress-version-checker:
runs-on: ubuntu-latest

steps:
- name: WordPress version checker
uses: skaut/wordpress-version-checker@v2.2.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 4 additions & 0 deletions .wordpress-version-checker.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"readme": "readme.txt",
"channel": "rc"
}

0 comments on commit c8a14f7

Please sign in to comment.