Schedule #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Schedule | |
run-name: Schedule | |
on: | |
schedule: | |
- cron: '0 3 * * 0' | |
jobs: | |
stale: | |
runs-on: windows-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-stale: 60 | |
days-before-close: 6 | |
stale-issue-message: 'No activity in the last 60 days. Marking as stale; will close in 7 days without further activity.' | |
stale-pr-message: 'No activity in the last 60 days. Marking as stale; will close in 7 days without further activity.' | |
stale-issue-label: 'stale' | |
stale-pr-label: 'stale' | |
codeql: | |
runs-on: windows-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'python' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize Codeql | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- uses: github/codeql-action/autobuild@v3 | |
- uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |