├── .github └── workflows │ └── main.yml ├── .gitignore ├── .stestr.conf ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── qiskit_bot ├── __init__.py ├── api.py ├── community.py ├── config.py ├── git.py ├── notifications.py ├── pull_requests.py ├── release_process.py └── repos.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tests ├── __init__.py ├── fake_meta.py ├── test_community.py ├── test_config.py ├── test_git.py ├── test_notifications.py └── test_release_process.py ├── tools └── generate_changelog.py └── tox.ini /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.stestr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/.stestr.conf -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/README.md -------------------------------------------------------------------------------- /qiskit_bot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qiskit_bot/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/qiskit_bot/api.py -------------------------------------------------------------------------------- /qiskit_bot/community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/qiskit_bot/community.py -------------------------------------------------------------------------------- /qiskit_bot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/qiskit_bot/config.py -------------------------------------------------------------------------------- /qiskit_bot/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/qiskit_bot/git.py -------------------------------------------------------------------------------- /qiskit_bot/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/qiskit_bot/notifications.py -------------------------------------------------------------------------------- /qiskit_bot/pull_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/qiskit_bot/pull_requests.py -------------------------------------------------------------------------------- /qiskit_bot/release_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/qiskit_bot/release_process.py -------------------------------------------------------------------------------- /qiskit_bot/repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/qiskit_bot/repos.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fake_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/tests/fake_meta.py -------------------------------------------------------------------------------- /tests/test_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/tests/test_community.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/tests/test_git.py -------------------------------------------------------------------------------- /tests/test_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/tests/test_notifications.py -------------------------------------------------------------------------------- /tests/test_release_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/tests/test_release_process.py -------------------------------------------------------------------------------- /tools/generate_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/tools/generate_changelog.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qiskit/qiskit-bot/HEAD/tox.ini --------------------------------------------------------------------------------