Skip to content

Releases: actions/stale

v10.3.0

Choose a tag to compare

@chiranjib-swain chiranjib-swain released this 21 May 02:38
eb5cf3a

What's Changed

Bug Fix

Dependency Updates

New Contributors

Full Changelog: v10...v10.3.0

v10.2.0

Choose a tag to compare

@chiranjib-swain chiranjib-swain released this 17 Feb 03:03
b5d41d4

What's Changed

Bug Fix

  • Fix checking state cache (fix #1136) and switch to Octokit helper methods by @itchyny in #1152

Dependency Updates

New Contributors

Full Changelog: v10...v10.2.0

v10.1.1

Choose a tag to compare

@chiranjib-swain chiranjib-swain released this 03 Dec 03:26
9971854

What's Changed

Bug Fix

Improvement

Dependency Upgrades

New Contributors

Full Changelog: v10...v10.1.1

v10.1.0

Choose a tag to compare

@luketomlinson luketomlinson released this 03 Oct 19:45
5f858e3

What's Changed

New Contributors

Full Changelog: v10...v10.1.0

v10.0.0

Choose a tag to compare

@HarithaVattikuti HarithaVattikuti released this 04 Sep 03:36
3a9db7e

What's Changed

Breaking Changes

  • Upgrade to node 24 by @salmanmkc in #1279
    Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. Release Notes

Enhancement

Dependency Upgrades

Documentation changes

New Contributors

Full Changelog: v9...v10.0.0

v9.1.0

Choose a tag to compare

@suyashgaonkar suyashgaonkar released this 21 Jan 03:34
5bef64f

What's Changed

New Contributors

Full Changelog: v9...v9.1.0

v9.0.0

Choose a tag to compare

@aparnajyothi-y aparnajyothi-y released this 07 Dec 12:30
28ca103

Breaking Changes

  1. Action is now stateful: If the action ends because of operations-per-run then the next run will start from the first unprocessed issue skipping the issues processed during the previous run(s). The state is reset when all the issues are processed. This should be considered for scheduling workflow runs.
  2. Version 9 of this action updated the runtime to Node.js 20. All scripts are now run with Node.js 20 instead of Node.js 16 and are affected by any breaking changes between Node.js 16 and 20.

What Else Changed

  1. Performance optimization that removes unnecessary API calls by @dsame #1033 fixes #792
  2. Logs displaying current github API rate limit by @dsame #1032 addresses #1029

For more information, please read the action documentation and its section about statefulness

New Contributors

Full Changelog: v8...v9.0.0

v4.1.1

Choose a tag to compare

@dmitry-shibanov dmitry-shibanov released this 30 Mar 15:44
a20b814

In scope of this release we updated actions/core to 1.10.0 for v4 and fixed issues operation count.

Update @actions/core for v5

Choose a tag to compare

@dmitry-shibanov dmitry-shibanov released this 27 Mar 12:01
f7176fd

In scope of this release we updated actions/core to 1.10.0 for v5: #958

v8.0.0

Choose a tag to compare

@panticmilos panticmilos released this 22 Mar 12:44
1160a22

⚠️ This version contains breaking changes ⚠️

What's Changed

  • New option labels-to-remove-when-stale enables users to specify list of comma delimited labels that will be removed when the issue or PR becomes stale by @panticmilos #770
  • Skip deleting the branch in the upstream of a forked repo by @dsame #913
  • abort the build on the error by @dsame in #935

Breaking Changes

  • In this release we prevent scenarios when the build is not interrupted on some exceptions, which led to successful builds when they are supposed to fail

Example

name: 'Remove labels when the issue or PR becomes stale'
on:
  schedule:
    - cron: '30 1 * * *'

permissions:
    pull-requests: write

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/stale@v8
        with:
          labels-to-remove-when-stale: 'label1,label2'