Skip to content

Add a button-driven release workflow and document releasing (#254) #70

Add a button-driven release workflow and document releasing (#254)

Add a button-driven release workflow and document releasing (#254) #70

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
# Removed pull_request to stop clones on everyday feature branches
schedule:
- cron: "24 3 * * 1" # Runs automatically every single Monday at 3:24 AM UTC
workflow_dispatch:
permissions:
security-events: write
packages: read
actions: read
contents: read
jobs:
analyze:
name: Analyze Python
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: python
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v4