├── .github ├── main.workflow └── workflows │ └── main.yml ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── cred-helper.sh └── entrypoint.sh /.github/main.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesolutions/mirror-action/HEAD/.github/main.workflow -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesolutions/mirror-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesolutions/mirror-action/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesolutions/mirror-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesolutions/mirror-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesolutions/mirror-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesolutions/mirror-action/HEAD/action.yml -------------------------------------------------------------------------------- /cred-helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesolutions/mirror-action/HEAD/cred-helper.sh -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yesolutions/mirror-action/HEAD/entrypoint.sh --------------------------------------------------------------------------------