Update readme.txt #62
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
name: Sync assets with wordpress.org | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'readme.txt' | |
- '.wordpress-org/**' | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
if: "! contains(github.event.head_commit.message, 'chore(release)')" | |
name: Push assets to wporg | |
steps: | |
- uses: actions/checkout@master | |
- name: WordPress.org plugin asset/readme update | |
uses: selul/action-wordpress-plugin-asset-update@develop | |
env: | |
SVN_PASSWORD: ${{ secrets.SVN_THEMEISLE_PASSWORD }} | |
IGNORE_OTHER_FILES: true | |
SVN_USERNAME: ${{ secrets.SVN_THEMEISLE_USERNAME }} |