add minimal readme and github settings

This commit is contained in:
Robert Kaussow 2020-04-11 13:39:23 +02:00
parent 76ddfb5a41
commit 3fba9a9ce7
3 changed files with 72 additions and 2 deletions

57
.github/settings.yml vendored Normal file
View File

@ -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

View File

@ -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 []

View File

@ -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)