[Bug report] 开发环境下,修改文件 permalink
会导致 Failed to resolve import "xxx"
#2062
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: issue-commented | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
issue-commented: | |
name: remove stale on commented | |
if: contains(github.event.issue.labels.*.name, 'stale') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'remove-labels' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
labels: 'stale' |