1653 GitHub action to add needs testing labels (#1679)
* feat: add github action to add needs testing labels to closed issues * fix: add all needs testing labels
This commit is contained in:
parent
14b069618d
commit
6f213e78a5
2 changed files with 4 additions and 2 deletions
5
.github/workflows/issue_closed.yaml
vendored
5
.github/workflows/issue_closed.yaml
vendored
|
|
@ -9,7 +9,10 @@ jobs:
|
|||
permissions:
|
||||
issues: write
|
||||
steps:
|
||||
- run: gh issue edit "$NUMBER" --add-label "needs iOS testing"
|
||||
- run: |
|
||||
gh issue edit "$NUMBER" --add-label "needs iOS testing"
|
||||
gh issue edit "$NUMBER" --add-label "needs android testing"
|
||||
gh issue edit "$NUMBER" --add-label "needs web testing"
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GH_REPO: ${{ github.repository }}
|
||||
|
|
|
|||
|
|
@ -42,7 +42,6 @@ import '../../widgets/matrix.dart';
|
|||
import 'package:fluffychat/utils/tor_stub.dart'
|
||||
if (dart.library.html) 'package:tor_detector_web/tor_detector_web.dart';
|
||||
|
||||
|
||||
enum SelectMode {
|
||||
normal,
|
||||
share,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue