[Feature request] Android 增加一个权限状态检查的接口,用来判断是否需要给权限弹框做提示 #99
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: Remove label when issue is closed | |
on: | |
issues: | |
types: | |
- closed | |
jobs: | |
add-label: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: remove label | |
run: | |
gh issue edit ${{ github.event.issue.number }} --remove-label 'await triage' |