feat: add no value option to edit string value ux-editor #104
Workflow file for this run
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: Auto-Approve PR | |
on: | |
pull_request: | |
types: [ labeled ] | |
jobs: | |
auto-approve: | |
runs-on: ubuntu-latest | |
if: github.event.label.name == 'skip-manual-testing' | |
steps: | |
- name: Checkout PR code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Auto approve PR | |
run: gh pr review ${{ github.event.pull_request.number }} --approve | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |