From 62bc7f53a11690b759b986059be567dc79572c34 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 5 Nov 2024 17:57:19 +0100 Subject: [PATCH 1/3] CI: Update GHA configuration to also run on the `main` branch This is intended to toggle the badge on the Build Status page [1] into green. [1] https://cratedb.com/docs/crate/clients-tools/en/latest/status.html --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7f1cf10..cf17503 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,10 @@ name: Main on: - - pull_request + push: + branches: [ main ] + pull_request: ~ + workflow_dispatch: jobs: lint: From 88fd7193f3c796bb0c4a61f5945929473995b535 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 5 Nov 2024 17:57:47 +0100 Subject: [PATCH 2/3] CI: Optimize GHA configuration about redundant concurrent jobs --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cf17503..c53f222 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,6 +7,10 @@ on: pull_request: ~ workflow_dispatch: +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: lint: name: Run black/pylint From 94fb888272841aaf3ab155c8087fb4f9ff7544e7 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 5 Nov 2024 17:58:06 +0100 Subject: [PATCH 3/3] README: Improve document title --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 92add15..3c56e1a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# crate-airflow-tutorial +# CrateDB Airflow Tutorial Orchestration Project - Astronomer/Airflow tutorials