mirror of
https://github.com/safing/portbase
synced 2025-09-04 03:29:59 +00:00
Switch to different label action workflow
This commit is contained in:
parent
1cdc45d716
commit
624d6a4047
3 changed files with 54 additions and 37 deletions
32
.github/label-actions.yml
vendored
Normal file
32
.github/label-actions.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Configuration for Label Actions - https://github.com/dessant/label-actions
|
||||||
|
|
||||||
|
community support:
|
||||||
|
comment: |
|
||||||
|
Hey @{issue-author}, thank you for raising this issue with us.
|
||||||
|
|
||||||
|
After a first review we noticed that this does not seem to be a technical issue, but rather a configuration issue or general question about how Portmaster works.
|
||||||
|
|
||||||
|
Thus, we invite the community to help with configuration and/or answering this questions.
|
||||||
|
|
||||||
|
If you are in a hurry or haven't received an answer, a good place to ask is in [our Discord community](https://discord.gg/safing).
|
||||||
|
|
||||||
|
If your problem or question has been resolved or answered, please come back and give an update here for other users encountering the same and then close this issue.
|
||||||
|
|
||||||
|
If you are a paying subscriber and want this issue to be checked out by Safing, please send us a message [on Discord](https://discord.gg/safing) or [via Email](mailto:support@safing.io) with your username and the link to this issue, so we can prioritize accordingly.
|
||||||
|
|
||||||
|
needs debug info:
|
||||||
|
comment: |
|
||||||
|
Hey @{issue-author}, thank you for raising this issue with us.
|
||||||
|
|
||||||
|
After a first review we noticed that we will require the Debug Info for further investigation. However, you haven't supplied any Debug Info in your report.
|
||||||
|
|
||||||
|
Please [collect Debug Info](https://wiki.safing.io/en/FAQ/DebugInfo) from Portmaster _while_ the reported issue is present.
|
||||||
|
|
||||||
|
in/compatibility:
|
||||||
|
comment: |
|
||||||
|
Hey @{issue-author}, thank you for reporting on a compatibility.
|
||||||
|
|
||||||
|
We keep a list of compatible software and user provided guides for improving compatibility [in the wiki - please have a look there](https://wiki.safing.io/en/Portmaster/App/Compatibility).
|
||||||
|
If you can't find your software in the list, then a good starting point is our guide on [How do I make software compatible with Portmaster](https://wiki.safing.io/en/FAQ/MakeSoftwareCompatibleWithPortmaster).
|
||||||
|
|
||||||
|
If you have managed to establish compatibility with an application, please share your findings here. This will greatly help other users encountering the same issues.
|
22
.github/workflows/issues-label-actions.yml
vendored
Normal file
22
.github/workflows/issues-label-actions.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# This workflow responds with a message when certain labels are added to an issue or PR.
|
||||||
|
# Docs: https://github.com/dessant/label-actions
|
||||||
|
name: Label Actions
|
||||||
|
|
||||||
|
# This workflow is triggered when a label is added to an issue.
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: labeled
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
issues: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
action:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: dessant/label-actions@v3
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
config-path: ".github/label-actions.yml"
|
||||||
|
process-only: "issues"
|
37
.github/workflows/issues-label-responder.yml
vendored
37
.github/workflows/issues-label-responder.yml
vendored
|
@ -1,37 +0,0 @@
|
||||||
# This workflow responds with a message when certain labels are added to an issue or PR.
|
|
||||||
# Docs: https://github.com/hramos/respond-to-issue-based-on-label
|
|
||||||
name: Respond To Issues Based on Label
|
|
||||||
|
|
||||||
# This workflow is triggered when a label is added to an issue.
|
|
||||||
on:
|
|
||||||
issues:
|
|
||||||
types: labeled
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
respond:
|
|
||||||
name: Process Label Action
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: hramos/respond-to-issue-based-on-label@v2
|
|
||||||
with:
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
community support:
|
|
||||||
comment: |
|
|
||||||
Thank you for raising this issue with us.
|
|
||||||
|
|
||||||
After a first review we noticed that this does not seem to be a technical issue, but rather a configuration issue or general question about how Portmaster works.
|
|
||||||
|
|
||||||
Thus, we invite the community to help with configuration and/or answering this questions.
|
|
||||||
|
|
||||||
If you are in a hurry or haven't received an answer, a good place to ask is in [our Discord community](https://discord.gg/safing).
|
|
||||||
|
|
||||||
If your problem or question has been resolved or answered, please come back and give an update here for other users encountering the same and then close this issue.
|
|
||||||
|
|
||||||
If you are a paying subscriber and want this issue to be checked out by Safing, please send us a message [on Discord](https://discord.gg/safing) or [via Email](mailto:support@safing.io) with your username and the link to this issue, so we can prioritize accordingly.
|
|
||||||
needs debug info:
|
|
||||||
comment: |
|
|
||||||
Thank you for raising this issue with us.
|
|
||||||
|
|
||||||
After a first review we noticed that we will require the Debug Info for further investigation. However, you haven't supplied any Debug Info in your report.
|
|
||||||
|
|
||||||
Please [collect Debug Info](https://wiki.safing.io/en/FAQ/DebugInfo) from Portmaster _while_ the reported issue is present.
|
|
Loading…
Add table
Reference in a new issue