diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1230149 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/call-invalid-interaction-helper.yml b/.github/workflows/call-invalid-interaction-helper.yml new file mode 100644 index 0000000..ce3d653 --- /dev/null +++ b/.github/workflows/call-invalid-interaction-helper.yml @@ -0,0 +1,12 @@ +name: Comment on invalid interaction +on: + issues: + types: + - labeled +jobs: + add-comment-on-invalid: + if: github.event.label.name == 'invalid' + permissions: + issues: write + uses: linuxserver/github-workflows/invalid-interaction-helper.yml@main + secrets: inherit diff --git a/invalid-interaction-helper.yml b/invalid-interaction-helper.yml new file mode 100644 index 0000000..3025201 --- /dev/null +++ b/invalid-interaction-helper.yml @@ -0,0 +1,17 @@ +name: Comment on invalid interaction +on: + workflow_call: + +jobs: + add-comment-on-invalid: + if: github.event.label.name == 'invalid' + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - name: Add comment on invalid + uses: peter-evans/create-or-update-comment@1.4.5 + with: + issue-number: ${{ github.event.issue.number}} + body: | + A human has marked this issue as invalid, this likely happened because the issue template was not used in the creation of the issue.