Releases: Deividy/move-stale-issues
v3.2
Fix usage of exempt-all-assignees
flag when value is false
.
v3.1
Update action dist/github-action.js
file :)
v3
Improves usage in node.js / move some source files
v2.5
- Improves pagination getting 100 issues
per_page
- Accumulate issues and move after looping through all issues (fixes bugs with pagination)
v2.4
This release is just a minor improvement on performance, we are now using octokit.paginate.iterator()
to get all issues instead of getting them all at once with just one call to octokit.paginate()
v2.3
- Use
octokit.paginate()
to get all issues - Check for flag
pull_request
so we don't try to move a pull request to another milestone
v2.2
Add exempt-all-assignees (default false) to not move issues that have anyone assigned
*updates ./dist/
:$
v2.1
Add exempt-all-assignees
(default false
) to not move issues that have anyone assigned
v2
It fixes the dist action without the need to commit node_modules
:)
v1.0.2
Hello! This is the move-stale-issues
action!
This is very useful to move stale issues from a milestone to another;
Let's say you have a milestone called Features
and you have some issues that you want to work on that milestone, but they are stale for a long time, you don't want to close them (they are real feature requests), but you also don't want they to pollute this milestone with the features you will not work now.
This action can move the issues that are stale from Features
to Backlog
(for example), this is very similar to the https://github.com/actions/stale, but instead of closing the stale issues, it moves the issues to the target-milestone
, more simple and only work for issues.
Hope you have fun! :)