Skip to content

Commit 7ced4fa

Browse files
committed
ci: clean up workflow naming
1 parent 910d849 commit 7ced4fa

14 files changed

+29
-23
lines changed

.github/workflows/airbyte-ci-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Connector Ops CI - Airbyte CI Release
1+
name: Airbyte CI Release
22

33
concurrency:
44
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/airbyte-ci-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- synchronize
1818
jobs:
1919
changes:
20+
name: Check for changes in internal poetry packages
2021
runs-on: ubuntu-latest
2122
outputs:
2223
internal_poetry_packages: ${{ steps.changes.outputs.internal_poetry_packages }}
@@ -25,7 +26,8 @@ jobs:
2526
- name: Checkout Airbyte
2627
if: github.event_name != 'pull_request'
2728
uses: actions/checkout@v4
28-
- id: changes
29+
- name: Check for changes in internal poetry packages
30+
id: changes
2931
uses: dorny/paths-filter@v2
3032
with:
3133
# Note: expressions within a filter are OR'ed
@@ -43,12 +45,12 @@ jobs:
4345
- airbyte-integrations/bases/connector-acceptance-test/**
4446
4547
run-tests:
48+
name: Run Airbyte CI tests # This is a required check for the branch protection rule, do not change the job name
4649
needs: changes
4750
# We only run the Connectors CI job if there are changes to the connectors on a non-forked PR
4851
if: needs.changes.outputs.internal_poetry_packages == 'true'
4952
#name: Internal Poetry packages CI
5053
# To rename in a follow up PR
51-
name: Run Airbyte CI tests
5254
runs-on: tooling-test-large
5355
permissions:
5456
pull-requests: read

.github/workflows/community_ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ jobs:
3939
exit 1
4040
4141
format_check:
42-
# IMPORTANT: This name must match the require check name on the branch protection settings
43-
name: "Check for formatting errors"
42+
name: "Check for formatting errors" # This is a required check for the branch protection rule, do not change the job name
4443
if: github.event.pull_request.head.repo.fork == true
4544
environment: community-ci-auto
4645
runs-on: community-tooling-test-small

.github/workflows/connector_teams_review_requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Connector Ops CI - Check review requirements
1+
name: Check review requirements
22

33
on:
44
pull_request:

.github/workflows/connectors_nightly_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Connector Ops CI - Connectors Nightly Tests
1+
name: Connectors Nightly Tests
22

33
on:
44
schedule:

.github/workflows/connectors_tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Connectors Tests
1+
name: Connector testing [Non Forked PRs]
22

33
concurrency:
44
# This is the name of the concurrency group. It is used to prevent concurrent runs of the same workflow.
@@ -23,6 +23,7 @@ on:
2323
- synchronize
2424
jobs:
2525
changes:
26+
name: Check for changes in connectors
2627
runs-on: ubuntu-latest
2728
outputs:
2829
connectors: ${{ steps.changes.outputs.connectors }}
@@ -32,7 +33,8 @@ jobs:
3233
- name: Checkout Airbyte
3334
if: github.event_name != 'pull_request'
3435
uses: actions/checkout@v4
35-
- id: changes
36+
- name: Check for changes in connectors
37+
id: changes
3638
uses: dorny/paths-filter@v2
3739
with:
3840
# Note: expressions within a filter are OR'ed
@@ -58,13 +60,13 @@ jobs:
5860
"target_url": "${{ github.event.workflow_run.html_url }}"
5961
}' \
6062
61-
connectors_ci:
63+
airbyte_ci_connectors_tests:
6264
needs: changes
6365
# We only run the Connectors CI job if there are changes to the connectors on a non-forked PR
6466
# Forked PRs are handled by the community_ci.yml workflow
6567
# If the condition is not met the job will be skipped (it will not fail)
6668
if: (github.event_name == 'pull_request' && needs.changes.outputs.connectors == 'true' && github.event.pull_request.head.repo.fork != true) || github.event_name == 'workflow_dispatch'
67-
name: Connectors CI
69+
name: Run airbyte-ci connectors test
6870
runs-on: connector-test-large
6971
timeout-minutes: 360 # 6 hours
7072
steps:

.github/workflows/connectors_weekly_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Connector Ops CI - Connectors Weekly Tests
1+
name: Connectors Weekly Tests
22

33
on:
44
schedule:

.github/workflows/contractors_review_requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Connector Ops CI - Check contractors review requirements
1+
name: Check contractors review requirements
22

33
on:
44
pull_request:

.github/workflows/format_check.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ on:
1010

1111
jobs:
1212
format-check:
13-
# IMPORTANT: This name must match the require check name on the branch protection settings
14-
name: "Check for formatting errors"
13+
name: "Check for formatting errors" # This is a required check for the branch protection rule, do not change the job name
1514
# Do not run this job on forks
1615
# Forked PRs are handled by the community_ci.yml workflow
1716
if: github.event.pull_request.head.repo.fork != true

.github/workflows/gradle.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Connector Ops CI - Gradle Check
1+
name: Gradle Check
22

33
concurrency:
44
group: ${{ github.workflow }}-${{ github.ref }}
@@ -21,6 +21,7 @@ on:
2121

2222
jobs:
2323
changes:
24+
name: Check for changes in java files
2425
runs-on: ubuntu-latest
2526
outputs:
2627
java: ${{ steps.changes.outputs.java }}
@@ -29,7 +30,8 @@ jobs:
2930
- name: Checkout Airbyte
3031
if: github.event_name != 'pull_request'
3132
uses: actions/checkout@v4
32-
- id: changes
33+
- name: Check for changes in java files
34+
id: changes
3335
uses: dorny/paths-filter@v2
3436
with:
3537
# Note: expressions within a filter are OR'ed
@@ -41,6 +43,7 @@ jobs:
4143
- 'airbyte-cdk/java/**/*'
4244
4345
run-check:
46+
name: Gradle Check # This is a required check for the branch protection rule, do not change the job name
4447
needs:
4548
- changes
4649
if: needs.changes.outputs.java == 'true'
@@ -49,7 +52,6 @@ jobs:
4952
# See https://github.com/airbytehq/airbyte/pull/36055 for an example of this,
5053
# which explains why which we went down from 64 cores to 16.
5154
runs-on: connector-test-large
52-
name: Gradle Check
5355
timeout-minutes: 30
5456
steps:
5557
- name: Checkout Airbyte

0 commit comments

Comments
 (0)