;ci: main: doc

This commit is contained in:
Simon Michael 2022-04-25 03:03:54 -10:00
parent de70e0d3ea
commit 211680da86

View File

@ -7,18 +7,20 @@ name: main CI
# This workflow runs... # This workflow runs...
on: on:
# on master, when manually triggered # On master, when manually triggered.
workflow_dispatch: workflow_dispatch:
# on master, on this schedule: # On master, on this schedule:
# schedule: # schedule:
# - cron: "0 07 * * 0" # sunday midnight pacific # - cron: "0 07 * * 0" # sunday midnight pacific
# on these dev branches, when pushed # On these dev branches, when pushed.
# To avoid double workflow execution, don't use these branches for pull requests.
# (https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/2)
push: push:
branches: [ simon, simon2 ] branches: [ simon, simon2 ]
# on pull request branches against these branches, when pushed # On pull request branches against these branches, when pushed.
pull_request: pull_request:
branches: [ master ] branches: [ master ]
# Uncomment to run it only for changes to these paths: (but that could prevent merging) # Uncomment to run it only for changes to these paths: (but that could prevent merging)