Skip to content

Commit

Permalink
ci: fix branches in plugin check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stklcode committed Nov 12, 2024
1 parent 00aa79c commit b34a790
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/wordpress-plugin-check.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Plugin check
on:
push:
branches: [ stable', 'release/*' ]
branches: [ 'stable', 'release/*' ]
pull_request:
branches: [ stable ]
branches: [ 'stable' ]
jobs:
check:
runs-on: ubuntu-latest
Expand All @@ -16,6 +16,7 @@ jobs:
mkdir -p ./dist
tail -n +6 README.md > README.md.tmp && mv README.md.tmp README.md
rsync -rc --exclude-from=.distignore ./ ./dist/statify-blacklist --delete --delete-excluded
- name: Check WP plugin
uses: wordpress/plugin-check-action@v1
with:
Expand Down

0 comments on commit b34a790

Please sign in to comment.