8000 Fix CodeQL target branch by Nothing4You · Pull Request #1054 · PyMySQL/PyMySQL · GitHub
[go: up one dir, main page]

Skip to content

Fix CodeQL target branch #1054

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix CodeQL target branch
master branch was renamed to main some time ago, leading to this action no longer working properly, at least for PRs
  • Loading branch information
Nothing4You committed Jul 9, 2022
commit 4ce9bdb91a7f2be7ae4d2de8bb928810d43c8b10
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ name: "CodeQL"

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
branches: [ main ]
schedule:
- cron: '34 7 * * 2'

Expand Down
0