Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
Enable Auto-update
  • Loading branch information
ter-s committed Nov 16, 2021
1 parent 16c8541 commit 2900b39
Showing 1 changed file with 32 additions and 4 deletions.
36 changes: 32 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,58 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Monitor
name: DaXueXi

on:
schedule:
- cron: '0 0 */3 * *'
workflow_dispatch:

jobs:

build:

runs-on: ubuntu-latest

steps:

- name: 'Checkout codes'
uses: actions/checkout@v2

# REQUIRED step
# Step 2: run the sync action
- name: Sync upstream changes
id: sync
uses: aormsby/[email protected]
with:
target_sync_branch: my-branch
# REQUIRED 'target_repo_token' exactly like this!
target_repo_token: ${{ secrets.GITHUB_TOKEN }}
upstream_sync_branch: main
upstream_sync_repo: startkkkkkk/Beijing_Daxuexi_Simple

# Step 3: Display a sample message based on the sync output var 'has_new_commits'
- name: New commits found
if: steps.sync.outputs.has_new_commits == 'true'
run: echo "New commits were found to sync."

- name: No new commits
if: steps.sync.outputs.has_new_commits == 'false'
run: echo "There were no new commits."

- name: Show value of 'has_new_commits'
run: echo ${{ steps.sync.outputs.has_new_commits }}

- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: 'Checkout codes'
uses: actions/checkout@v2


- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run Python
env:
USERNAME: ${{ secrets.USERNAME }}
Expand Down

0 comments on commit 2900b39

Please sign in to comment.