Skip to content

Releases: rednafi/fork-sweeper

v0.2.0

18 Mar 00:56
Compare
Choose a tag to compare
  • The CLI will now list the forked repositories that will and will not be deleted:

    fork-sweeper --owner rednafi --token $GITHUB_TOKEN --older-than-days 0

    This returns:

    Fetching forked repositories for rednafi...
    
    Guarded forked repos [won't be deleted]:
    
    Unguarded forked repos [will be deleted]:
        - https://github.com/rednafi/cpython
        - https://github.com/rednafi/dysconfig
        - https://github.com/rednafi/pydantic
  • Explicitly filter out forked repositories with fuzzy name matching:

    fork-sweeper --owner "rednafi" --token $GITHUB_TOKEN --older-than-days 0 --guard 'py'

    This prints:

      Fetching forked repositories for rednafi...
    
      Guarded forked repos [won't be deleted]:
          - https://github.com/rednafi/cpython
          - https://github.com/rednafi/pydantic
    
      Unguarded forked repos [will be deleted]:
          - https://github.com/rednafi/dysconfig

v0.1.3

08 Mar 03:26
Compare
Choose a tag to compare
  • Internal refactorings

v0.1.2

05 Mar 13:30
Compare
Choose a tag to compare

Minor bug fixes

v0.1.1

05 Mar 11:55
Compare
Choose a tag to compare
  • The CLI will now print more informative error messages

v0.1.0

04 Mar 21:10
Compare
Choose a tag to compare

Initial release