Skip to content

Missing/outdated documentation around TestButler/DetoxButler #4878

Missing/outdated documentation around TestButler/DetoxButler

Missing/outdated documentation around TestButler/DetoxButler #4878

Workflow file for this run

name: 'Support Requests'
on:
issues:
types: [labeled, unlabeled, reopened]
permissions:
issues: write
jobs:
action:
runs-on: ubuntu-latest
steps:
- name: Add comment and close issue
if: "${{ github.event.action == 'labeled' && contains(github.event.label.name, 'type: question/stack overflow') }}"
run: |
gh issue comment ${{ github.event.issue.number }} --body "This issue appears to be a general usage or support question.
In order to get help, please either ask a question on Stack Overflow with the [\`detox\`](https://stackoverflow.com/questions/tagged/detox) tag,
or simply join our [Discord](https://discord.com/invite/CkD5QKheF5).
**Feel free to post your Stack Overflow question here for more visibility!**
For more information about our policy on issues, refer to [this discussion](https://github.com/wix/Detox/issues/1305)."
gh issue close ${{ github.event.issue.number }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}