[ci] Optimize AutoTestCI trigger timing.

This commit is contained in:
guozhanxin 2022-01-20 15:25:40 +08:00 committed by Bernard Xiong
parent 5820cc27b8
commit 4dab5e0e59
1 changed files with 19 additions and 1 deletions

View File

@ -1,7 +1,25 @@
name: AutoTestCI
# Controls when the action will run. Triggers the workflow on push or pull request
on: [push, pull_request]
# events but only for the master branch
on:
# Runs at 16:00 UTC (BeiJing 00:00) on the 1st of every month
schedule:
- cron: '0 16 1 * *'
push:
branches:
- master
paths-ignore:
- documentation/**
- '**/README.md'
- '**/README_zh.md'
pull_request:
branches:
- master
paths-ignore:
- documentation/**
- '**/README.md'
- '**/README_zh.md'
jobs:
test: