This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch fix-upgrade-job-and-do-not-run-it-in-pr in repository https://gitbox.apache.org/repos/asf/airflow-site.git
commit 559a36b4a15db95165cbf08e03a1828127b6f4dc Author: Jarek Potiuk <[email protected]> AuthorDate: Tue Jan 20 19:26:46 2026 +0100 Fix upgrade check on airflow-site and skip running the check on upgrade While we are running PRs upgrade check should not run - as it is confusing the contributors. We should only run it after merge and rely on notification received by the one who merges it. --- .github/workflows/upgrade.yml | 1 - .pre-commit-config.yaml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/upgrade.yml b/.github/workflows/upgrade.yml index a9abd51824..185569b7f6 100644 --- a/.github/workflows/upgrade.yml +++ b/.github/workflows/upgrade.yml @@ -20,7 +20,6 @@ name: Upgrade CI dependencies on: push: branches: ['main', 'staging'] - pull_request: workflow_dispatch: permissions: contents: write diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f8774d7080..ad115bad6e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -37,7 +37,7 @@ repos: language: python language_version: python311 - repo: https://github.com/woodruffw/zizmor-pre-commit - rev: 4480de6c701c7f476b12a986d852cb55ad9ef504 # frozen: v1.21.0 + rev: b546b77c44c466a54a42af5499dcc0dcc1a3193f # frozen: v1.22.0 hooks: - id: zizmor name: Run zizmor to check for github workflow syntax errors
