1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-07-11 08:13:53 -04:00

Update codeql-analysis.yml

[skip ci]
This commit is contained in:
2020-06-02 19:38:50 -04:00
committed by GitHub
parent 6e829bc23a
commit bf115cee81
+3 -1
View File
@@ -4,6 +4,8 @@ name: Code scanning
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 10 * * 3' # every Wednesday at 10 AM UTC == 6 AM EDT
@@ -15,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
# Allow skipping with [skip ci] (doesn't apply to PRs and crons)
if: "github.event_name == 'push' && !contains(github.event.head_commit.message, '[skip ci]')"
if: "!contains(github.event.head_commit.message, '[skip ci]') || github.event_name != 'push'"
steps:
- name: Checkout repository