diff --git a/.github/settings.yml b/.github/settings.yml new file mode 100644 index 0000000..7dcdb47 --- /dev/null +++ b/.github/settings.yml @@ -0,0 +1,57 @@ +--- +repository: + name: git-batch + description: Simple tool to automate cloning a single branch from a list of repositories + topics: git, batch, automation, python + + private: false + has_issues: true + has_projects: false + has_wiki: false + has_downloads: false + + default_branch: master + + allow_squash_merge: true + allow_merge_commit: true + allow_rebase_merge: true + +labels: + - name: bug + color: d73a4a + description: Something isn't working + - name: documentation + color: 0075ca + description: Improvements or additions to documentation + - name: duplicate + color: cfd3d7 + description: This issue or pull request already exists + - name: enhancement + color: a2eeef + description: New feature or request + - name: good first issue + color: 7057ff + description: Good for newcomers + - name: help wanted + color: 008672 + description: Extra attention is needed + - name: invalid + color: e4e669 + description: This doesn't seem right + - name: question + color: d876e3 + description: Further information is requested + - name: wontfix + color: ffffff + description: This will not be worked on + +branches: + - name: master + protection: + required_pull_request_reviews: null + required_status_checks: + strict: true + contexts: + - continuous-integration/drone/pr + enforce_admins: null + restrictions: null diff --git a/Dockerfile b/Dockerfile index f982baa..dc03c40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,11 +13,11 @@ ADD dist/git_batch-*.whl / RUN apk --update add --virtual .build-deps build-base libffi-dev libressl-dev && \ apk --update add git && \ pip install --upgrade --no-cache-dir pip && \ - pip install --no-cache-dir --find-links=. git-batch && \ + pip install --no-cache-dir git_batch-*.whl && \ apk del .build-deps && \ + rm -f git_batch-*.whl && \ rm -rf /var/cache/apk/* && \ rm -rf /root/.cache/ && \ - rm -f git_batch-*.whl USER root CMD [] diff --git a/README.md b/README.md index bcb3ca4..4274ea3 100644 --- a/README.md +++ b/README.md @@ -1 +1,14 @@ # git-batch +[![Build Status](https://img.shields.io/drone/build/xoxys/git-batch?logo=drone)](https://cloud.drone.io/xoxys/git-batch) +[![Docker Hub](https://img.shields.io/badge/docker-latest-blue.svg?logo=docker&logoColor=white)](https://hub.docker.com/r/xoxys/git-batch) +[![License: MIT](https://img.shields.io/github/license/xoxys/git-batch)](LICENSE) + +Simple tool to automate cloning a single branch from a list of repositories. + +## License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. + +## Maintainers and Contributors + +[Robert Kaussow](https://github.com/xoxys)