From 76b3a7fdad2818349f04f225768547e01a3a4bb5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 14:13:31 +0000 Subject: [PATCH 1/2] Initial plan From b7d8657bd5d300f16dafab0a2523d0e4c36d30d7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 14:17:04 +0000 Subject: [PATCH 2/2] Add actions/stale workflow to close stale PRs Co-authored-by: netchampfaris <9355208+netchampfaris@users.noreply.github.com> --- .github/workflows/stale.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..f9fd8004d --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,29 @@ +# https://github.com/actions/stale + +name: "Close Stale PRs" +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + stale: + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - uses: actions/stale@v9 + with: + days-before-pr-stale: 15 + days-before-pr-close: 3 + stale-pr-label: 'Inactive' + exempt-draft-pr: true + days-before-issue-stale: -1 + days-before-issue-close: -1 + stale-pr-message: | + This pull request is being marked as inactive because of no recent activity. + If your PR hasn't been reviewed yet, please ensure it follows the [contribution guidelines](https://github.com/frappe/frappe-ui/blob/main/CONTRIBUTING.md). + + It will be closed in 3 days if no further activity occurs. + Thank you for contributing! + labels-to-remove-when-unstale: 'Inactive'