1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Run only daily schedule because CodeQL provides a lot of false-positive results for Ruby code

This commit is contained in:
Hiroshi SHIBATA 2022-11-03 07:27:11 +09:00
parent b777408c33
commit 59a6caf83a
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -1,24 +1,24 @@
name: "Code scanning - action" name: "Code scanning - action"
on: on:
push: # push:
paths-ignore: # paths-ignore:
- 'doc/**' # - 'doc/**'
- '**.md' # - '**.md'
- '**.rdoc' # - '**.rdoc'
- '**/.document' # - '**/.document'
- '**.[1-8]' # - '**.[1-8]'
- '**.ronn' # - '**.ronn'
pull_request: # pull_request:
paths-ignore: # paths-ignore:
- 'doc/**' # - 'doc/**'
- '**.md' # - '**.md'
- '**.rdoc' # - '**.rdoc'
- '**/.document' # - '**/.document'
- '**.[1-8]' # - '**.[1-8]'
- '**.ronn' # - '**.ronn'
schedule: schedule:
- cron: '0 12 * * 4' - cron: '0 12 * * *'
concurrency: concurrency:
group: ${{ github.workflow }} / ${{ startsWith(github.event_name, 'pull') && github.ref_name || github.sha }} group: ${{ github.workflow }} / ${{ startsWith(github.event_name, 'pull') && github.ref_name || github.sha }}