Skip to content

Commit f1dc11d

Browse files
committed
Merge branch 'main' of github.com:apache/airflow into kalyan/0060_3_0_0_add_try_id_to_ti_and_tih
2 parents 40e9fbd + e63e7d1 commit f1dc11d

File tree

93 files changed

+8664
-13655
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+8664
-13655
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
# API
2525
/airflow-core/src/airflow/api/ @ephraimbuddy @pierrejeambrun @rawwar @jason810496
26-
/airflow-core/src/airflow/api_fastapi/ @ephraimbuddy @pierrejeambrun @rawwar @jason810496
26+
/airflow-core/src/airflow/api_fastapi/ @ephraimbuddy @pierrejeambrun @rawwar @jason810496 @bugraoz93
2727
/airflow-core/src/airflow/api_fastapi/execution_api/ @ashb @kaxil @amoghrajesh
2828

2929
# Airflow CTL

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -785,6 +785,8 @@ jobs:
785785
permissions:
786786
contents: write
787787
packages: write
788+
# This will fire when all the jobs from "needs" are either successful or skipped
789+
if: always() && !failure() && !cancelled()
788790
needs:
789791
- build-info
790792
- generate-constraints

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ repos:
125125
- --fuzzy-match-generates-todo
126126
- id: insert-license
127127
name: Add license for all YAML files except Helm templates
128-
exclude: ^\.github/.*$|^chart/templates/.*|.*reproducible_build\.yaml$|^.*/v1.*\.yaml$|^.*/pnpm-lock\.yaml$
128+
exclude: ^\.github/.*$|^chart/templates/.*|.*reproducible_build\.yaml$|^.*/v1.*\.yaml$|^.*/openapi/_private_ui.*\.yaml$|^.*/pnpm-lock\.yaml$
129129
types: [yaml]
130130
files: \.ya?ml$
131131
args:
@@ -1322,7 +1322,7 @@ repos:
13221322
files: |
13231323
(?x)
13241324
^airflow-core/src/airflow/ui/|
1325-
^airflow-core/src/airflow/api_fastapi/core_api/openapi/v1.*\.yaml$|
1325+
^airflow-core/src/airflow/api_fastapi/core_api/openapi/.*\.yaml$|
13261326
^airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui/|
13271327
^airflow-core/src/airflow/api_fastapi/auth/managers/simple/openapi/v1.*\.yaml$
13281328
entry: ./scripts/ci/pre_commit/compile_lint_ui.py

.rat-excludes

+1
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ PKG-INFO
161161
.openapi-generator-ignore
162162
version.txt
163163
v1*.yaml
164+
_private_ui*.yaml
164165

165166
# Front end generated files
166167
api-generated.ts

0 commit comments

Comments
 (0)