mirror of
https://github.com/php/php-src.git
synced 2026-04-22 15:38:49 +02:00
8ba1267744
This adds the necessary templates and actions for https://wiki.php.net/rfc/github_issues. Closes GH-7694.
18 lines
637 B
YAML
18 lines
637 B
YAML
name: Close old issues that need feedback
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Close old issues that need feedback
|
|
uses: dwieeb/needs-reply@v2
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
issue-label: "Status: Needs Feedback"
|
|
days-before-close: 14
|
|
close-message: "No feedback was provided. The issue is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so. Thank you."
|