├── Dockerfile ├── README.md ├── assets ├── GitHub Self-Hosted Agent Arch.drawio ├── GitHub Self-Hosted Agent Arch.drawio.png ├── container-config.png ├── variables-and-secrets.png └── webhook-timeout.png ├── logger.cfg ├── main.py ├── requirements.txt └── test-registration.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endocode/gh-cloudrun-runner/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endocode/gh-cloudrun-runner/HEAD/README.md -------------------------------------------------------------------------------- /assets/GitHub Self-Hosted Agent Arch.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endocode/gh-cloudrun-runner/HEAD/assets/GitHub Self-Hosted Agent Arch.drawio -------------------------------------------------------------------------------- /assets/GitHub Self-Hosted Agent Arch.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endocode/gh-cloudrun-runner/HEAD/assets/GitHub Self-Hosted Agent Arch.drawio.png -------------------------------------------------------------------------------- /assets/container-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endocode/gh-cloudrun-runner/HEAD/assets/container-config.png -------------------------------------------------------------------------------- /assets/variables-and-secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endocode/gh-cloudrun-runner/HEAD/assets/variables-and-secrets.png -------------------------------------------------------------------------------- /assets/webhook-timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endocode/gh-cloudrun-runner/HEAD/assets/webhook-timeout.png -------------------------------------------------------------------------------- /logger.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endocode/gh-cloudrun-runner/HEAD/logger.cfg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endocode/gh-cloudrun-runner/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | waitress 2 | Flask 3 | requests -------------------------------------------------------------------------------- /test-registration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endocode/gh-cloudrun-runner/HEAD/test-registration.sh --------------------------------------------------------------------------------