Skip to content

Commit e9112b6

Browse files
committed
Change naming convention: rebase to merge
1 parent 43d80ca commit e9112b6

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

.github/actions/rebase/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
name: 'Rebase'
2-
description: 'Action for rebasing to the main branch'
1+
name: 'Merge'
2+
description: 'Action for merging to the main branch'
33

44
runs:
55
using: 'composite'
66
steps:
77
# Setup identity to avoid errors when git is trying to rebase without identity set
88
- name: Setup git identity
99
run: |
10-
git config --global user.email "rebase@action.com"
11-
git config --global user.name "Rebase Action"
10+
git config --global user.email "merge@action.com"
11+
git config --global user.name "Merge Action"
1212
shell: bash
1313

1414
# Update origin/main branch locally to cover case when repo is not fully cloned

.github/workflows/pull-integration-cluster-k3d.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
25-
- name: Rebase
26-
uses: ./.github/actions/rebase
25+
- name: Merge
26+
uses: ./.github/actions/merge
2727
- name: Create Single Cluster
2828
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0
2929
with:

.github/workflows/pull-integration-namespace-k3d.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
25-
- name: Rebase
26-
uses: ./.github/actions/rebase
25+
- name: Merge
26+
uses: ./.github/actions/merge
2727
- name: Create Single Cluster
2828
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0
2929
with:

.github/workflows/pull-kyma-integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
26-
- name: Rebase
27-
uses: ./.github/actions/rebase
26+
- name: Merge
27+
uses: ./.github/actions/merge
2828
- name: Install k3d
2929
env:
3030
K3D_URL: https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh

.github/workflows/pull-lighthouse.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
24-
- name: Rebase
25-
uses: ./.github/actions/rebase
24+
- name: Merge
25+
uses: ./.github/actions/merge
2626
- name: Create Single Cluster
2727
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0
2828
with:

.github/workflows/pull-smoke-test-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
26-
- name: Rebase
27-
uses: ./.github/actions/rebase
26+
- name: Merge
27+
uses: ./.github/actions/merge
2828
- name: Install k3d
2929
env:
3030
K3D_URL: https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh

.github/workflows/pull-smoke-test-stage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
26-
- name: Rebase
27-
uses: ./.github/actions/rebase
26+
- name: Merge
27+
uses: ./.github/actions/merge
2828
- name: Install k3d
2929
env:
3030
K3D_URL: https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh

.github/workflows/pull-unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
26-
- name: Rebase
27-
uses: ./.github/actions/rebase
26+
- name: Merge
27+
uses: ./.github/actions/merge
2828
- uses: actions/setup-node@v4
2929
with:
3030
node-version: 20

0 commit comments

Comments
 (0)