From a7166af45b727f45a4b1439d00003062b5c8b622 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Fri, 14 Nov 2025 15:23:42 +0100 Subject: [PATCH 1/3] general: add stale.yml workflow for managing inactive issues and PRs This workflow automatically marks issues and pull requests as stale after a period of inactivity and can close them if no activity occurs. Signed-off-by: Erick --- .github/workflows/stale.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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 0000000..4102e5a --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,27 @@ +# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/actions/stale +name: Mark stale issues and pull requests + +on: + schedule: + - cron: '25 23 * * *' + +jobs: + stale: + + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + + steps: + - uses: actions/stale@v5 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'Stale issue message' + stale-pr-message: 'Stale pull request message' + stale-issue-label: 'no-issue-activity' + stale-pr-label: 'no-pr-activity' From 365a120ebaa43458804b4607d458f21132fdb818 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Fri, 14 Nov 2025 15:24:00 +0100 Subject: [PATCH 2/3] general: add Dependabot settings --- .github/dependabot.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..fa1156f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +version: 2 +updates: + - package-ecosystem: "docker" + directory: "/ci/" + schedule: + interval: "weekly" + labels: + - "dependencies" + - "docker" + - package-ecosystem: "cargo" + directory: "/src/ffi" + schedule: + interval: "weekly" + labels: + - "dependencies" + - "rust" + - package-ecosystem: "github-actions" + directory: "/.github/workflows" + schedule: + interval: "weekly" + labels: + - "dependencies" + - "github-actions" From e1cb61800d8a529698525d89a5d4fe3dfda6ad26 Mon Sep 17 00:00:00 2001 From: Erick Date: Fri, 14 Nov 2025 15:40:04 +0100 Subject: [PATCH 3/3] general: fix Cargo.toml directory Signed-off-by: Erick --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fa1156f..70bbae3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,7 +8,7 @@ updates: - "dependencies" - "docker" - package-ecosystem: "cargo" - directory: "/src/ffi" + directory: "/" schedule: interval: "weekly" labels: