Use WP_Query search_columns instead of custom search_by_title filter #416
This file contains hidden or 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: Trigger update on Meta Box Lite | |
| on: | |
| workflow_dispatch: | |
| branch: | |
| - master | |
| push: | |
| branch: | |
| - master | |
| pull_request: | |
| types: | |
| - closed | |
| branch: | |
| - master | |
| jobs: | |
| trigger-update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger update on Meta Box Lite | |
| run: | |
| curl --request POST --url https://api.github.com/repos/wpmetabox/meta-box-lite/actions/workflows/update-from-extensions.yml/dispatches --header 'Authorization:Bearer ${{ secrets.ACCESS_TOKEN }}' --header 'content-type:application/json' --data '{"ref":"master"}' |