chore(demo): normalize printable-variants screenshot filename #51
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 | |
| permissions: | |
| contents: write | |
| pull-requests: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, reopened, synchronize, closed] | |
| workflow_dispatch: {} # allow manual runs from Actions tab | |
| jobs: | |
| update_release_draft: | |
| # Skip only when a PR is closed without merge; run on push/main, open PRs, and merged PRs | |
| if: github.event_name != 'pull_request' || github.event.action != 'closed' || github.event.pull_request.merged == true | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: release-drafter/release-drafter@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |