This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new f4846a8706f The e2e-tests workflows properly use workflow-name to pass
name (#58100)
f4846a8706f is described below
commit f4846a8706f9283b2ac189b9cd95dbb63eb5898f
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun Nov 9 14:28:28 2025 +0100
The e2e-tests workflows properly use workflow-name to pass name (#58100)
The workflows used `inputs.name` but the passed input was really
the `workflow-name` one.
---
.github/workflows/airflow-e2e-tests.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/airflow-e2e-tests.yml
b/.github/workflows/airflow-e2e-tests.yml
index 637156c1053..f150589379f 100644
--- a/.github/workflows/airflow-e2e-tests.yml
+++ b/.github/workflows/airflow-e2e-tests.yml
@@ -87,7 +87,7 @@ on: # yamllint disable-line rule:truthy
jobs:
test-e2e-integration-tests:
timeout-minutes: 60
- name: ${{ inputs.name }}
+ name: ${{ inputs.workflow-name }}
runs-on: ${{ fromJSON(inputs.runners) }}
env:
PYTHON_MAJOR_MINOR_VERSION: "${{ inputs.default-python-version }}"