refactor: sole lint errors #6
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: Open Pull Request to Master | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - dev | |
| env: | |
| MESSAGE: merge branch `${{ github.head_ref || github.ref_name }}` to `master` | |
| jobs: | |
| pull-request: | |
| name: Open pull request | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Open pull request | |
| uses: repo-sync/pull-request@v2 | |
| with: | |
| destination_branch: master | |
| pr_title: 'chore: ${{ env.MESSAGE }}' | |
| pr_body: | | |
| This pull request will ${{ env.MESSAGE }}. | |
| pr_draft: true |