[defect]: RadSec/TCP listener with lifetime = 0 and idle_timeout = 0 closes idle connections after 30 seconds #405
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Close support questions | |
| # | |
| # The issue tracker is for bugs. Support questions go to the mailing | |
| # lists, so triage labels a support question 'close'. This workflow then | |
| # closes the issue with a pointer to the mailing lists. This workflow | |
| # runs on the `labeled` trigger, because the label arrives after the | |
| # issue is opened, not with the issue. | |
| # | |
| on: | |
| issues: | |
| types: [opened, labeled] | |
| jobs: | |
| close-support-questions: | |
| name: Close support questions | |
| if: contains(github.event.issue.labels.*.name, 'close') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Close Issue | |
| uses: peter-evans/close-issue@v3.0.2 | |
| with: | |
| comment: Direct questions about server operation or development to the FreeRADIUS mailing lists https://freeradius.org/support/. |