fix: 修复紧凑模式下, 文本带有 '\n' 换行符时 maxLines 配置未生效和文本溢出的问题 closes #2963 #2900 #583
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: 🏷 PR Auto Set Next Label | |
on: | |
pull_request_target: | |
types: [opened, edited] | |
branches: 'next' | |
jobs: | |
auto-set-next-label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: pr-auto-set-next-label | |
uses: actions-cool/issues-helper@main | |
with: | |
actions: 'add-labels' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.pull_request.number }} | |
labels: 'next' |