public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
.github/workflows/check_if_support_labeled.yml
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
name: Check if labeled support, if so send message and close issue
2
on:
3
issues:
4
types:
5
- labeled
6
jobs:
7
add-comment:
8
if: github.event.label.name == 'support'
9
runs-on: ubuntu-latest
10
permissions:
11
issues: write
12
steps:
13
- name: Add comment
14
run: gh issue comment "$NUMBER" --body "$BODY"
15
env:
16
GH_TOKEN: ${{ secrets.SUPPORTISSUES_ACTION_PAT }}
17
GH_REPO: ${{ github.repository }}
18
NUMBER: ${{ github.event.issue.number }}
19
BODY: |
20
**THIS IS A AUTOMATED MESSAGE!**
22
It seems your issue is not a bug.
23
Therefore we highly advise you to get support!
25
You can get support either by:
26
- ordering a paid [support contract at Servercow](https://www.servercow.de/mailcow?lang=en#support/) (Directly from the developers) or
27
- using the [community forum](https://community.mailcow.email) (**Based on volunteers! NO guaranteed answer**) or
28
- using the [Telegram support channel](https://t.me/mailcow) (**Based on volunteers! NO guaranteed answer**)
30
This issue will be closed. If you think your reported issue is not a support case feel free to comment above and if so the issue will reopened.
32
- name: Close issue
33
env:
34
GH_TOKEN: ${{ secrets.SUPPORTISSUES_ACTION_PAT }}
35
GH_REPO: ${{ github.repository }}
36
NUMBER: ${{ github.event.issue.number }}
37
run: gh issue close "$NUMBER" -r "not planned"