* chore: bring docker dev init script up to date with bs5 branch (#3611) * ci: only run codeql on schedule * feat: shorten long agenda filter button labels (#3602) Sessions with long names lead to poor rendering of the agenda filter buttons on the 'customize the agenda view' page. This truncates those labels at 3 words. * docs: Remove stale and incomplete information from the README (#3612) * docs: Suggest cloning a fork rather than ietf-tools repo (#3614) * docs: update README * chore: add issue templates * chore: update issue templates config * chore: remove duplicate security issue link * docs: point feature requests to discussions * chore: add bug report form * chore: remove bug report issue template * chore: fix bug report form * fix: point the api index page into Github instead of trac/svn * chore: remove os + version + log fields from bug report form * fix: point to GitHub for bug reports (#3625) * fix: point to GitHub for bug reports * fix: point report bug link to template chooser * fix: point report bug link to template chooser (2) Co-authored-by: Nicolas Giard <github@ngpixel.com> * fix: remove stale explanation of status reports (#3628) * fix: adjust about page to reflect move to GitHub. Normalize information level on page. (#3629) * fix: remove anchor tag with empty href (#3630) * fix: use same github issue URL on 500 error page as elsewhere (#3631) * chore: update report-a-bug.yml form * ci: fix __init__.py version quotes * chore: bring docker-compose to root level (#3642) (#3643) Authored-by: Nicolas Giard <github@ngpixel.com> Co-authored-by: Nicolas Giard <github@ngpixel.com> Co-authored-by: Robert Sparks <rjsparks@nostrum.com> Co-authored-by: Jim Fenton <fenton@bluepopcorn.net>
38 lines
855 B
YAML
38 lines
855 B
YAML
name: CodeQL Analysis
|
|
|
|
on:
|
|
# push:
|
|
# branches: [ main ]
|
|
# pull_request:
|
|
# branches: [ main ]
|
|
schedule:
|
|
- cron: '23 1 * * 1'
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: [ 'javascript', 'python' ]
|
|
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
|
# Learn more about CodeQL language support at https://git.io/codeql-language-support
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v1
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v1
|