vocodedev/vocode-core

Implement a Stale Github Action for Issue/PR

arpagon opened this issue · 1 comments

Implement a Stale Github Action for Issue/PR

Summary

The goal is to implement a stale Github Action that automatically marks issues and pull requests as stale after a certain period of inactivity. This will help in managing the backlog of issues and pull requests, and ensure that active and relevant ones are prioritized.

Blockers

  • None

Outcome

  • Increased focus on active tasks by automating the management of stale issues and pull requests.

Technical Details

# Example of a Stale Github Action configuration
stale:
  daysUntilStale: 60
  daysUntilClose: 7
  staleLabel: 'stale'
  markComment: >
    This issue has been automatically marked as stale because it has not had
    recent activity. It will be closed if no further activity occurs. Thank you
    for your contributions.
  closeComment: >
    This issue has been automatically closed due to inactivity. Thank you for
    your contributions.

Subtasks

  • Set up the Stale Github Action on the Vocode GitHub repository
  • Configure the Action as per the project's requirements
  • Monitor the Action's performance and make necessary adjustments

We have successfully implemented the Stale Github Action and it's currently operational. We are now in the monitoring phase:

  • Monitor the Action's performance and make necessary adjustments

Once this final step is complete, we will close this issue.