From 41b991ef150c51b9fc8977467f2766122b26c109 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sat, 17 Feb 2024 06:57:40 -0800 Subject: [PATCH] update for branch renaming --- .github/workflows/{python-package.yml => ci.yml} | 6 +++--- .github/workflows/codeql-analysis.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) rename .github/workflows/{python-package.yml => ci.yml} (97%) diff --git a/.github/workflows/python-package.yml b/.github/workflows/ci.yml similarity index 97% rename from .github/workflows/python-package.yml rename to .github/workflows/ci.yml index 70be4158..990eba30 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/ci.yml @@ -1,18 +1,18 @@ # This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions -name: Python build +name: CI on: push: branches: - - master + - main - 2.6 paths: - '**.py' pull_request: branches: - - master + - main workflow_dispatch: jobs: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index b9f25cb5..a50d77f4 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -13,12 +13,12 @@ name: "CodeQL" on: push: - branches: [ master ] + branches: [ main ] paths: - '**.py' pull_request: # The branches below must be a subset of the branches above - branches: [ master ] + branches: [ main ] schedule: - cron: '27 9 * * 1' -- 2.47.3