PullToRefresh 在未升级IOS13的iPhone上正常,但在已升级IOS13的IPhone上异常 #2598
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 Remove Inactive | |
on: | |
issues: | |
types: [edited] | |
issue_comment: | |
types: [created, edited] | |
jobs: | |
issue-remove-inactive: | |
runs-on: ubuntu-latest | |
steps: | |
- name: remove inactive | |
if: github.event.label.state == 'open' && github.actor == github.event.issue.user.login | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'remove-labels' | |
issue-number: ${{ github.event.issue.number }} | |
labels: 'need reproduce' |