Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pt prashant tripathi patch 1 #10

Merged
merged 23 commits into from
Oct 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7ec04b0
Update PanditBOT.yml
PtPrashantTripathi Oct 29, 2022
2b618c6
🤖[PanditBot] Updating Repos Data
PtPrashantTripathi Oct 29, 2022
404d1da
Delete bootstrap.min.css.br
PtPrashantTripathi Oct 29, 2022
0153447
Delete material-design-iconic-font.min.css.br
PtPrashantTripathi Oct 29, 2022
0663ac6
Delete material-icons.css.br
PtPrashantTripathi Oct 29, 2022
6a93253
Delete material.min.css.br
PtPrashantTripathi Oct 29, 2022
4328b5d
Delete style.css.br
PtPrashantTripathi Oct 29, 2022
587245c
Delete default-skin.css.br
PtPrashantTripathi Oct 29, 2022
99ec275
Add files via upload
PtPrashantTripathi Oct 29, 2022
2a6e99e
Update requirements.txt
PtPrashantTripathi Oct 29, 2022
8bd6633
Update PanditBOT.yml
PtPrashantTripathi Oct 29, 2022
5a3f3fa
Add files via upload
PtPrashantTripathi Oct 29, 2022
9844eb4
Update PanditBOT.yml
PtPrashantTripathi Oct 29, 2022
f49dbc2
Update PanditBOT.yml
PtPrashantTripathi Oct 29, 2022
8e52a06
Update PanditBOT.yml
PtPrashantTripathi Oct 29, 2022
f0c2ac3
🤖[PanditBot] Updating Repos Data
PtPrashantTripathi Oct 29, 2022
7512975
Delete archive.tar.gz
PtPrashantTripathi Oct 29, 2022
57d14e0
Rename PanditBOT.yml to PanditBOT.yml2
PtPrashantTripathi Oct 29, 2022
1c4adfd
Delete PanditBOT.yml
PtPrashantTripathi Oct 29, 2022
ce72f01
Rename PanditBOT.yml2 to PanditBOT.yml
PtPrashantTripathi Oct 29, 2022
02d802e
Delete PanditBOT.yml
PtPrashantTripathi Oct 29, 2022
997b158
Add files via upload
PtPrashantTripathi Oct 29, 2022
722b4c4
Rename .github/PanditBOT.yml to .github/workflows/PanditBOT.yml
PtPrashantTripathi Oct 29, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 24 additions & 17 deletions .github/workflows/PanditBOT.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,36 @@
name: PanditBOT
'on':
# This is a basic workflow to help you get started with Actions
name: PanditBOT

# Controls when the workflow will run
on:
# Triggers the workflow on push request events but only for the main branch
#push:
# branches: [ main ]
schedule:
- cron: 0 0 1 * *
workflow_dispatch: null
# every 2 hours from 6am IST to 6pm IST
- cron: '0 0 1 * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Compression
id: brotli
uses: charlesworth/[email protected]
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9.5
- name: Updating JSON
run: |
- uses: actions/checkout@master
with:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9.5 #install the python needed
- name: Updating JSON
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python main.py
git config user.name PtPrashantTripathi
git config user.email [email protected]
git add ./json/repos.json
git commit -m "🤖[PanditBot] Updating Repos Data"
git commit -m "[PanditBot] Updating Repos Data"
git push --quiet
Loading