You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Automatically close issues that dont follow the issue template
42
46
uses: lucasbento/auto-close-issues@v1.0.2
43
47
with:
@@ -46,6 +50,7 @@ jobs:
46
50
@${issue.user.login}: hello! :wave:
47
51
This issue is being automatically closed because it does not follow the issue template."
48
52
closed-issues-label: "invalid"
53
+
49
54
- name: Check if issue mentions a provider
50
55
id: provider_check
51
56
env:
@@ -55,6 +60,7 @@ jobs:
55
60
pip3 install httpx
56
61
RES="$(python3 ./check_issue.py)"
57
62
echo "name=${RES}" >> $GITHUB_OUTPUT
63
+
58
64
- name: Comment if issue mentions a provider
59
65
if: steps.provider_check.outputs.name != 'none'
60
66
uses: actions-cool/issues-helper@v3
@@ -66,6 +72,7 @@ jobs:
66
72
Please do not report any provider bugs here. This repository does not contain any providers. Please find the appropriate repository and report your issue there or join the [discord](https://discord.gg/5Hus6fM).
67
73
68
74
Found provider name: `${{ steps.provider_check.outputs.name }}`
0 commit comments