├── .flake8 ├── .github ├── dependabot.yaml └── workflows │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── RELEASE.md ├── gh_scoped_creds └── __init__.py ├── screencast.mp4 └── setup.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/RELEASE.md -------------------------------------------------------------------------------- /gh_scoped_creds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/gh_scoped_creds/__init__.py -------------------------------------------------------------------------------- /screencast.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/screencast.mp4 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/gh-scoped-creds/HEAD/setup.py --------------------------------------------------------------------------------