fix(tui): preserve dashboard layout during command prompts #63
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: Release Drafter | |
| on: | |
| push: | |
| # branches to target | |
| branches: | |
| - main | |
| # pull_request events, but only when the PR is merged | |
| pull_request: | |
| types: | |
| - closed | |
| jobs: | |
| update_release_draft: | |
| runs-on: ubuntu-latest | |
| # Only run when merged or when pushed to main | |
| if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.merged_at != null) | |
| steps: | |
| # Drafts your Next Release Notes as Pull Requests are merged into "main" | |
| - uses: release-drafter/release-drafter@v6 | |
| with: | |
| # Default: false | |
| publish: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |