Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nadiamoe/gh-project-cleanup
https://github.com/nadiamoe/gh-project-cleanup
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nadiamoe/gh-project-cleanup
- Owner: nadiamoe
- Created: 2021-02-09T15:56:38.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-15T10:23:28.000Z (almost 4 years ago)
- Last Synced: 2024-12-27T05:04:22.355Z (9 days ago)
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gh-project-cleanup
A script and GH action to cleanup old cards sitting in Done-like columns in Github Projects.
## Example
```yaml
cleanup-project:
name: Cleanup old cards in Done column
runs-on: ubuntu-latest
steps:
- uses: roobre/gh-project-cleanup@v1
with:
github_token: ${{ secrets.ACTUAL_TOKEN }}
config: |
# Location and ID of project
roobre/1:
Done: # Column name to cleanup, matches partially (i.e. contains)
older_than: 2 months # Format must be understandable by https://pypi.org/project/durations-nlp/
```