Skip to content

Commit

Permalink
Create auto_state_update_at_readme.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kdongsu5509 authored May 8, 2024
1 parent 587714e commit ae5da98
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/auto_state_update_at_readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Python application

on:
push:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run Update Python Script
run: |
python autoCheck/auto_check.py
- name: Run Update README.md File
run: |
git add .
git diff
git config user.name "kdongsu5509"
git config user.email "[email protected]"
git commit -m "Auto Update README.md file"
git push

0 comments on commit ae5da98

Please sign in to comment.