--- /dev/null
+blank_issues_enabled: false
+contact_links:
+ - name: FreeRADIUS Users Mailing list
+ url: https://freeradius.org/support/
+ about: 'Please ask non-bug related questions on the "users" mailing list.'
+ - name: Development questions
+ url: https://freeradius.org/support/
+ about: 'Please ask development related questions on the "development" mailing list.'
name: Any other questions about FreeRADIUS
about: Configuration problems, "how do I...?", writing your own modules, etc.
title: "READ THE MESSAGE BELOW, DO NOT SUBMIT A GITHUB ISSUE"
+labels: [other]
---
# STOP!
- GitHub Issues are for **confirmed BUG REPORTS only** (e.g. software crashes). Use the "BUG REPORT" template.
+- Programming questions should be asked on the [developer's list](https://freeradius.org/support/).
+
- Do not submit **any** other general questions such as "how do I configure this" here.
- It is NOT a bug report if your configuration simply does not work. Ask for help on the mailing list.
- **Remote security exploits MUST be sent to security@freeradius.org.**
-# READ THE ABOVE NOTICE
-
-# DO NOT SUBMIT THIS ISSUE HERE
-
-"Blank" issues will be closed in the same way.
+# PLEASE READ THE ABOVE NOTICE - DO NOT SUBMIT THIS ISSUE HERE
--- /dev/null
+name: "Close non-bug issues"
+
+on:
+ schedule:
+ - cron: "15 * * * * "
+ workflow_dispatch:
+
+jobs:
+ close_invalid_issues:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/stale@v3
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ stale-issue-message: 'This issue is off topic'
+ close-issue-message: 'This issue was closed because it is off topic, please ask on the FreeRADIUS users list instead: https://freeradius.org/support/'
+ days-before-stale: 0
+ days-before-close: 0
+ any-of-labels: "other"