Create main.yml

This commit is contained in:
yzqzss 2021-11-26 15:35:46 +08:00 committed by GitHub
parent 00de517ac9
commit 943e188472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

34
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,34 @@
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
# 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@v2
- name: Setup Python
uses: actions/setup-python@v2.3.0
- name: Run a one-line script
run: python main.py
- name: Commit files
run: |
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "regular repos.csv"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}