File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ * @ Thaleszh
Original file line number Diff line number Diff line change 1+ # .github/workflows/codeql-analysis.yml
2+ name : " CodeQL"
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+
9+ permissions :
10+ # required for all workflows
11+ security-events : write
12+
13+ # required to fetch internal or private CodeQL packs
14+ packages : read
15+
16+ jobs :
17+ analyze :
18+ runs-on : ubuntu-latest
19+ steps :
20+ - uses : actions/checkout@v4
21+ - name : Initialize CodeQL
22+ uses : github/codeql-action/init@v2
23+ - name : Perform CodeQL Analysis
24+ uses : github/codeql-action/analyze@v2
Original file line number Diff line number Diff line change 1+ name : ' Close stale PRs'
2+ on :
3+ schedule :
4+ - cron : ' 30 1 * * *'
5+ workflow_dispatch :
6+
7+ jobs :
8+ stale :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/stale@v9
12+ with :
13+ days-before-issue-stale : -1
14+ repo-token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments