This repository has been archived by the owner on Mar 29, 2022. It is now read-only.
forked from AnimeKaizoku/SaitamaRobot
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/AnimeKaizoku/SaitamaRobot
- Loading branch information
Showing
90 changed files
with
1,002 additions
and
895 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Black | ||
|
||
on: push | ||
|
||
jobs: | ||
black: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
- name: Install black | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install black | ||
- name: Run black | ||
run: black SaitamaRobot | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
commit-message: Format code using black | ||
title: Format code. | ||
body: Format code using black. | ||
labels: ⚫️ black | ||
branch: autofix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.4.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-docstring-first | ||
- id: debug-statements | ||
- id: requirements-txt-fixer | ||
- id: check-added-large-files | ||
- id: check-ast | ||
- id: check-builtin-literals | ||
- id: check-case-conflict | ||
- id: destroyed-symlinks | ||
- id: check-merge-conflict | ||
- id: check-yaml | ||
- id: debug-statements | ||
- id: detect-private-key | ||
- id: fix-byte-order-marker | ||
- repo: https://github.com/asottile/add-trailing-comma | ||
rev: v2.0.1 | ||
hooks: | ||
- id: add-trailing-comma | ||
args: [--py36-plus] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
@echo off | ||
TITLE Github Quick-pushing | ||
TITLE Github Quick-pushing | ||
|
||
:: Print the branch cause people like me push to wrong branches and cry about it later. | ||
echo Pushing to branch: | ||
:: Print the branch cause people like me push to wrong branches and cry about it later. | ||
echo Pushing to branch: | ||
git branch | ||
echo. | ||
:: Take input for comment and thats about it | ||
set /p commit_title="Enter Commit title (pushes with you as author): " | ||
|
||
:: If you are reading comments to understand this part then you can go back stab yourself. | ||
:: If you are reading comments to understand this part then you can go back stab yourself. | ||
echo. | ||
git pull | ||
git pull | ||
git add * | ||
git commit -m "%commit_title%" | ||
git push | ||
|
||
|
||
:: Hail Hydra | ||
:: Hail Hydra |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.