Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test scheduler #15

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- synchronize
schedule:
# https://crontab.guru/every-hour
- cron: 0 35 12 * *
- cron: 0 15 9 * *

jobs:
merge_schedule:
Expand All @@ -21,4 +21,18 @@ jobs:
# Time zone to use. Default is UTC.
time_zone: "America/Los_Angeles"
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Runs a set of commands using the runners shell
- name: Make curl call to build hook
run: |
echo Making curl call to Netlify build hook
curl -X POST -d '{}' ${{ secrets.BUILD_HOOK }}
1 change: 1 addition & 0 deletions modules/start/pages/overview.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
= TigerGraph Cloud
:description: Overview of TigerGraph Cloud.

TigerGraph Cloud is a fully-managed cloud database built on the same TigerGraph Enterprise Server engine that is delivering the fastest and most scalable graph database.
TigerGraph Cloud handles all the complexity of deploying and managing your deployments on the cloud service provider of your choice (AWS, Azure, and GCP).
Expand Down