├── .github ├── actions │ ├── base-setup │ │ ├── action.yml │ │ ├── create_constraints_file.py │ │ └── setup_constraints.sh │ ├── binder-link │ │ └── action.yml │ ├── check-links │ │ ├── action.yml │ │ └── check_links.py │ ├── downstream-test │ │ └── action.yml │ ├── enforce-label │ │ └── action.yml │ ├── make-sdist │ │ └── action.yml │ ├── pr-script │ │ ├── action.yml │ │ └── pr_script.py │ ├── pre-commit │ │ └── action.yml │ ├── report-coverage │ │ └── action.yml │ ├── test-sdist │ │ └── action.yml │ ├── update-snapshots │ │ └── action.yml │ └── upload-coverage │ │ └── action.yml ├── dependabot.yml ├── scripts │ └── bump_tag.sh └── workflows │ ├── check-release.yml │ ├── enforce-label.yml │ ├── pr_script.yml │ ├── prep-release.yml │ ├── publish-changelog.yml │ ├── publish-release.yml │ └── tests.yml ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── foobar.py ├── package.json └── pyproject.toml /.github/actions/base-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/base-setup/action.yml -------------------------------------------------------------------------------- /.github/actions/base-setup/create_constraints_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/base-setup/create_constraints_file.py -------------------------------------------------------------------------------- /.github/actions/base-setup/setup_constraints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/base-setup/setup_constraints.sh -------------------------------------------------------------------------------- /.github/actions/binder-link/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/binder-link/action.yml -------------------------------------------------------------------------------- /.github/actions/check-links/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/check-links/action.yml -------------------------------------------------------------------------------- /.github/actions/check-links/check_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/check-links/check_links.py -------------------------------------------------------------------------------- /.github/actions/downstream-test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/downstream-test/action.yml -------------------------------------------------------------------------------- /.github/actions/enforce-label/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/enforce-label/action.yml -------------------------------------------------------------------------------- /.github/actions/make-sdist/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/make-sdist/action.yml -------------------------------------------------------------------------------- /.github/actions/pr-script/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/pr-script/action.yml -------------------------------------------------------------------------------- /.github/actions/pr-script/pr_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/pr-script/pr_script.py -------------------------------------------------------------------------------- /.github/actions/pre-commit/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/pre-commit/action.yml -------------------------------------------------------------------------------- /.github/actions/report-coverage/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/report-coverage/action.yml -------------------------------------------------------------------------------- /.github/actions/test-sdist/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/test-sdist/action.yml -------------------------------------------------------------------------------- /.github/actions/update-snapshots/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/update-snapshots/action.yml -------------------------------------------------------------------------------- /.github/actions/upload-coverage/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/actions/upload-coverage/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/scripts/bump_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/scripts/bump_tag.sh -------------------------------------------------------------------------------- /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.github/workflows/pr_script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/workflows/pr_script.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/workflows/publish-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/RELEASE.md -------------------------------------------------------------------------------- /foobar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/foobar.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlab/maintainer-tools/HEAD/pyproject.toml --------------------------------------------------------------------------------