diff --git a/.github/label-actions.yml b/.github/label-actions.yml new file mode 100644 index 0000000..20f85fd --- /dev/null +++ b/.github/label-actions.yml @@ -0,0 +1,23 @@ +# Configuration for Label Actions - https://github.com/dessant/label-actions + +not on Github: + issues: + comment: | + Ahoi! + + It looks like this ticket is a request for help (or similar). + Many helpful people will not see your message here and you are + unlikely to get a useful response. + + We use github to handle bugreports, feature requests and + planning new releases. + + Please use our Discord-Server for help: [discord.gg/mainsail](https://discord.gg/mainsail) + + This ticket will be automatically closed. + + Fair wind and a following sea! + ~ Your friendly MainsailGithubBot + + *PS: I'm just an automated script, not a real sailor.* + close: true diff --git a/.github/workflows/label-actions.yml b/.github/workflows/label-actions.yml new file mode 100644 index 0000000..afdcd5a --- /dev/null +++ b/.github/workflows/label-actions.yml @@ -0,0 +1,19 @@ +name: 'Label Actions' + +on: + issues: + types: [labeled, unlabeled] + pull_request: + types: [labeled, unlabeled] + +permissions: + contents: read + issues: write + pull-requests: write + discussions: write + +jobs: + action: + runs-on: ubuntu-latest + steps: + - uses: dessant/label-actions@v2