-
Notifications
You must be signed in to change notification settings - Fork 5
46 lines (36 loc) · 1.06 KB
/
CheckAPI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CheckAPI
on:
schedule:
- cron: '0 * * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests
- name: Create Python script from secret
run: |
echo "$UPDATE_API" > temp_script.py
env:
UPDATE_API: ${{ secrets.UPDATE_API }}
- name: Run API check script
run: python temp_script.py
- name: commit files
run: |
git config --local user.email ${{ secrets.MY_GIT_EMAIL }}
git config --local user.name "junioralive"
git add README.md
git commit -m "Updated API Status" -a
- name: push changes
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main