├── .github └── workflows │ └── workflow.yml ├── .gitignore ├── .goreleaser.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── Taskfile.yml ├── cronjob.yaml ├── go.mod ├── go.sum ├── img ├── out.txt └── usage.png └── main.go /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/cronjob.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/go.sum -------------------------------------------------------------------------------- /img/out.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/img/usage.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeluxeOwl/gh-stars-backup/HEAD/main.go --------------------------------------------------------------------------------