From e62fa8a5f616ffe4fe8a7b1cc3cb76391127dd8b Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sun, 29 Jun 2025 17:28:18 -0700 Subject: [PATCH 1/8] Create stale.yml --- .github/workflows/stale.yml | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 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 0000000000..1a697f0401 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,40 @@ +name: 'Inactive Issue Pinger' + +on: + schedule: + - cron: '30 5 * * *' # Runs at 05:30 UTC every day + +jobs: + stale: + runs-on: ubuntu-latest + permissions: + issues: write + + steps: + - uses: actions/stale@v9.1.0 + with: + # The message to post on stale issues. + # This message will ping the issue author. + # Note: The stale bot action does not currently support a direct placeholder for the last commenter. + # As a workaround, this message encourages any participant to reply. + stale-issue-message: > + @${{ github.event.issue.user.login }}, is this issue still important to you? + Apologies in advance we might have missed this issue as well. + For faster response times, please post on our Reddit server - https://www.reddit.com/r/unsloth or our Discord - https://discord.com/invite/unsloth + + # The number of days of inactivity before an issue is considered stale. + days-before-issue-stale: 10 + + # Set to -1 to never close stale issues. + days-before-issue-close: -1 + + # A label to apply to stale issues. + stale-issue-label: 'inactive' + + # Set to true to only process issues and ignore pull requests. + only-issues: true + + # The number of operations to perform per run to avoid rate limiting. + operations-per-run: 30 + + enable-statistics: false \ No newline at end of file From dc62a55b31db526e73b9e54993a8c752e90e1aca Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sun, 29 Jun 2025 17:29:36 -0700 Subject: [PATCH 2/8] Update stale.yml --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 1a697f0401..6f74778b54 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -2,7 +2,7 @@ name: 'Inactive Issue Pinger' on: schedule: - - cron: '30 5 * * *' # Runs at 05:30 UTC every day + - cron: '30 0 * * *' # Runs at 12:30 UTC every day jobs: stale: From 40c3c33dbac28fe5ff5f907a9fddfb2a9f97db3c Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sun, 29 Jun 2025 17:35:01 -0700 Subject: [PATCH 3/8] Delete stale.yml --- .github/workflows/stale.yml | 40 ------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index 6f74778b54..0000000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: 'Inactive Issue Pinger' - -on: - schedule: - - cron: '30 0 * * *' # Runs at 12:30 UTC every day - -jobs: - stale: - runs-on: ubuntu-latest - permissions: - issues: write - - steps: - - uses: actions/stale@v9.1.0 - with: - # The message to post on stale issues. - # This message will ping the issue author. - # Note: The stale bot action does not currently support a direct placeholder for the last commenter. - # As a workaround, this message encourages any participant to reply. - stale-issue-message: > - @${{ github.event.issue.user.login }}, is this issue still important to you? - Apologies in advance we might have missed this issue as well. - For faster response times, please post on our Reddit server - https://www.reddit.com/r/unsloth or our Discord - https://discord.com/invite/unsloth - - # The number of days of inactivity before an issue is considered stale. - days-before-issue-stale: 10 - - # Set to -1 to never close stale issues. - days-before-issue-close: -1 - - # A label to apply to stale issues. - stale-issue-label: 'inactive' - - # Set to true to only process issues and ignore pull requests. - only-issues: true - - # The number of operations to perform per run to avoid rate limiting. - operations-per-run: 30 - - enable-statistics: false \ No newline at end of file From e80f725efaff99cd2987e7dd023e8f0f718d5065 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sun, 29 Jun 2025 17:36:23 -0700 Subject: [PATCH 4/8] Create stale.yml (#2832) --- .github/workflows/stale.yml | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 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 0000000000..f7e6205189 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,40 @@ +name: 'Inactive Issue Pinger' + +on: + schedule: + - cron: '45 0 * * *' # Runs at 12:30 UTC every day + +jobs: + stale: + runs-on: ubuntu-latest + permissions: + issues: write + + steps: + - uses: actions/stale@v9 + with: + # The message to post on stale issues. + # This message will ping the issue author. + # Note: The stale bot action does not currently support a direct placeholder for the last commenter. + # As a workaround, this message encourages any participant to reply. + stale-issue-message: > + @${{ github.event.issue.user.login }}, is this issue still important to you? + Apologies in advance we might have missed this issue as well. + For faster response times, please post on our Reddit server - https://www.reddit.com/r/unsloth or our Discord - https://discord.com/invite/unsloth + + # The number of days of inactivity before an issue is considered stale. + days-before-issue-stale: 10 + + # Set to -1 to never close stale issues. + days-before-issue-close: -1 + + # A label to apply to stale issues. + stale-issue-label: 'inactive' + + # Set to true to only process issues and ignore pull requests. + only-issues: true + + # The number of operations to perform per run to avoid rate limiting. + operations-per-run: 30 + + enable-statistics: false From 35a440abd0d876ad399cdcf09950e85ba4c59ade Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sun, 29 Jun 2025 21:57:30 -0700 Subject: [PATCH 5/8] Update stale.yml --- .github/workflows/stale.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index f7e6205189..2c4b08b0a3 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -31,10 +31,7 @@ jobs: # A label to apply to stale issues. stale-issue-label: 'inactive' - # Set to true to only process issues and ignore pull requests. - only-issues: true - # The number of operations to perform per run to avoid rate limiting. - operations-per-run: 30 + operations-per-run: 100 enable-statistics: false From 59012046439ed037ead7b673c2d55df332ef6cdf Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sun, 29 Jun 2025 21:58:55 -0700 Subject: [PATCH 6/8] Delete stale.yml --- .github/workflows/stale.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index 2c4b08b0a3..0000000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: 'Inactive Issue Pinger' - -on: - schedule: - - cron: '45 0 * * *' # Runs at 12:30 UTC every day - -jobs: - stale: - runs-on: ubuntu-latest - permissions: - issues: write - - steps: - - uses: actions/stale@v9 - with: - # The message to post on stale issues. - # This message will ping the issue author. - # Note: The stale bot action does not currently support a direct placeholder for the last commenter. - # As a workaround, this message encourages any participant to reply. - stale-issue-message: > - @${{ github.event.issue.user.login }}, is this issue still important to you? - Apologies in advance we might have missed this issue as well. - For faster response times, please post on our Reddit server - https://www.reddit.com/r/unsloth or our Discord - https://discord.com/invite/unsloth - - # The number of days of inactivity before an issue is considered stale. - days-before-issue-stale: 10 - - # Set to -1 to never close stale issues. - days-before-issue-close: -1 - - # A label to apply to stale issues. - stale-issue-label: 'inactive' - - # The number of operations to perform per run to avoid rate limiting. - operations-per-run: 100 - - enable-statistics: false From dd18796fe1bd16cdaa7993bbcf5b1335c9c84588 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sun, 29 Jun 2025 21:59:43 -0700 Subject: [PATCH 7/8] Create stale.yml (#2836) --- .github/workflows/stale.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 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 0000000000..6ec2913a6b --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,37 @@ +name: 'Inactive Issue Pinger' + +on: + schedule: + - cron: '30 5 * * *' # Runs at 5:30 UTC every day + +jobs: + stale: + runs-on: ubuntu-latest + permissions: + issues: write + + steps: + - uses: actions/stale@v9 + with: + # The message to post on stale issues. + # This message will ping the issue author. + # Note: The stale bot action does not currently support a direct placeholder for the last commenter. + # As a workaround, this message encourages any participant to reply. + stale-issue-message: > + @${{ github.event.issue.user.login }}, is this issue still important to you? + Apologies in advance we might have missed this issue as well. + For faster response times, please post on our Reddit server - https://www.reddit.com/r/unsloth or our Discord - https://discord.com/invite/unsloth + + # The number of days of inactivity before an issue is considered stale. + days-before-issue-stale: 10 + + # Set to -1 to never close stale issues. + days-before-issue-close: -1 + + # A label to apply to stale issues. + stale-issue-label: 'inactive' + + # The number of operations to perform per run to avoid rate limiting. + operations-per-run: 100 + + enable-statistics: false From 167b97127d16d613c4b48af210535b58b7d54927 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Mon, 30 Jun 2025 02:16:09 -0700 Subject: [PATCH 8/8] Update stale.yml --- .github/workflows/stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 6ec2913a6b..d5ea2a3372 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -18,7 +18,7 @@ jobs: # Note: The stale bot action does not currently support a direct placeholder for the last commenter. # As a workaround, this message encourages any participant to reply. stale-issue-message: > - @${{ github.event.issue.user.login }}, is this issue still important to you? + Is this issue still important to you? Apologies in advance we might have missed this issue as well. For faster response times, please post on our Reddit server - https://www.reddit.com/r/unsloth or our Discord - https://discord.com/invite/unsloth @@ -32,6 +32,6 @@ jobs: stale-issue-label: 'inactive' # The number of operations to perform per run to avoid rate limiting. - operations-per-run: 100 + operations-per-run: 500 enable-statistics: false