This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch separate-cache-workflow
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 48977c28c0 Separate cache build to a separate workflow called from the
main ci.yml
add 54d01809f9 Feature/add log grouping to UI (#38021)
add 636fd7bbc3 Separate MyPy checks to a separate workflow (#38129)
add 4a40c3a6c0 Separate Helm jobs to separate workflow (#38126)
add 3407bbaae0 Separate cache build to a separate workflow called from the
main ci.yml
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (48977c28c0)
\
N -- N -- N refs/heads/separate-cache-workflow (3407bbaae0)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/ci-image-build.yml | 2 +-
.github/workflows/ci.yml | 155 ++++-----------------
.github/workflows/helm-tests.yml | 129 +++++++++++++++++
.github/workflows/mypy.yml | 97 +++++++++++++
.github/workflows/prod-image-build.yml | 2 +-
.github/workflows/prod-image-extra-checks.yml | 2 +-
airflow/example_dags/example_python_operator.py | 4 +
airflow/jobs/local_task_job_runner.py | 6 +
airflow/models/taskinstance.py | 6 +
.../js/dag/details/taskInstance/Logs/LogBlock.tsx | 50 ++++++-
.../js/dag/details/taskInstance/Logs/index.tsx | 8 +-
.../dag/details/taskInstance/Logs/utils.test.tsx | 17 ++-
.../js/dag/details/taskInstance/Logs/utils.ts | 39 +++++-
airflow/www/static/js/ti_log.js | 39 ++++++
.../logging-monitoring/logging-tasks.rst | 41 ++++++
15 files changed, 452 insertions(+), 145 deletions(-)
create mode 100644 .github/workflows/helm-tests.yml
create mode 100644 .github/workflows/mypy.yml