├── .github └── workflows │ └── ci.yaml ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── action.yml ├── start.js └── start.sh /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobKed/github-forks-sync-action/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobKed/github-forks-sync-action/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobKed/github-forks-sync-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobKed/github-forks-sync-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobKed/github-forks-sync-action/HEAD/action.yml -------------------------------------------------------------------------------- /start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobKed/github-forks-sync-action/HEAD/start.js -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobKed/github-forks-sync-action/HEAD/start.sh --------------------------------------------------------------------------------