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
pull/1593/head
ggurdin 9 months ago committed by GitHub
parent 14b069618d
commit 6f213e78a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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…
Cancel
Save