-
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (23 loc) · 754 Bytes
/
python-run.yml
File metadata and controls
24 lines (23 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: PanditBOT
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token.
fetch-depth: 0 #: 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 README.md
run: |
python add.py
git config user.name PtPrashantTripathi
git config user.email ptprashanttripathi@outlook.com
git add .
git commit -m "Updating README.md"
git push --quiet