
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Command line tool to use Github's API for automation:
pip install githubot
Releases management.
Usage: githubot release --token=TOKEN --repo=REPO
[--tag=TAG] [--title=TITLE] [--message=MESSAGE]
[ASSETS...]
Options:
--token=TOKEN Github access token.
-r=REPO --repo=REPO Repo full name like: owner/repo.
--tag=TAG Tag name for the release. If the tag does not
exist it will be created on default branch.
--title=TITLE Title for the release.
--message=MESSAGE Message for the release.
-h --help Show this message and exit.
For example:
Create a release to repo WqyJh/test
with assets under the path of assets/
.
githubot release --token <github_token> --repo WqyJh/test assets/*
Create a release and specify tag
, title
and message
for it.
githubot release \
--token <github_token> \
--repo WqyJh/test \
--tag test_tag \
--title "This is an test title" \
--message "This release contains xxx" \
assets/*
Only regular files are supported for the --assets
option, directories are not supported.
You can specify files in the following manner:
--assets file1 file2
--assets path/* # wildcard
Files management.
Usage: githubot file upload --token=TOKEN --repo=REPO [FILES...]
githubot file download --token=TOKEN --repo=REPO [FILES...]
Options:
--token=TOKEN Github access token.
-r=REPO --repo=REPO Repo full name like: owner/repo.
-h --help Show this message and exit.
Upload files to github repo WqyJh/test
.
./run.py file upload \
--token <github_token> \
--repo WqyJh/test \
file1 file2 file*
Note that the FILES
argument is just the same with ASSETS
, only regular files are supported.
Download files from github repo WqyJh/test
.
./run.py file download \
--token <github_token> \
--repo WqyJh/test \
file1 dir1 dir2/
Note that the FILES
argument here cannot contains wildcard, but it can contains directories.
Delete files from github repo.
./run.py file delete \
--token <github_token> \
--repo Wqyjh/test \
file1 dir1 dir2/
The release processing is as follow:
git checkout dev
git pull origin dev
bumping
git checkout -b release-<version>
auto-changelog --latest-version <version> --tag-prefix v
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
Generated by auto-changelog
.
12 July 2020
#16
21 August 2019
21 August 2019
#10
#9
#8
#7
#4
e6c15a5
7156b94
c794221
20 August 2019
FAQs
Command line tool to use Github API to automate some works.
We found that githubot demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.