Merge pull request #2052 from Codeinwp/new-banners #118
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_PASSWORD }} | |
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} |