Skip to content

Commit 747ffc3

Browse files
committed
Try legacy rebase
1 parent ba91f94 commit 747ffc3

11 files changed

+73
-69
lines changed

.github/workflows/accessibility-tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@ name: Accessibility Tests
22

33
on:
44
schedule:
5-
- cron: "0 6 * * 1"
5+
- cron: '0 6 * * 1'
66
pull_request_target:
77
types: [opened, edited, synchronize, reopened, ready_for_review]
88
paths:
9-
- ".github/workflows/accessibility-tests.yml"
10-
- "tests/integration/tests/accessibility/**"
11-
- "tests/integration/support/**"
9+
- '.github/workflows/accessibility-tests.yml'
10+
- 'tests/integration/tests/accessibility/**'
11+
- 'tests/integration/support/**'
1212

1313
jobs:
1414
run-accessibility-tests:
1515
runs-on: ubuntu-latest
1616
if: github.event.pull_request.draft == false
1717
steps:
1818
- uses: actions/checkout@v4
19+
- uses: peter-evans/rebase@v3
1920
- name: Install k3d
2021
env:
2122
K3D_URL: https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh

.github/workflows/create-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,15 @@ jobs:
3535

3636
create-release:
3737
name: Create release
38-
needs: [ build-busola-web, build-busola-backend, build-busola ]
38+
needs: [build-busola-web, build-busola-backend, build-busola]
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Checkout code
4242
uses: actions/checkout@v4
4343
with:
4444
fetch-depth: 0
4545
ref: ${{ github.ref_name }} # checkout to latest branch changes ( by default this action checkouts to the SHA that triggers action )
46+
- uses: peter-evans/rebase@v3
4647
- name: Create changelog
4748
env:
4849
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: PR Lint Check
22

3-
on:
3+
on:
44
pull_request:
55
types: [opened, edited, synchronize, reopened, ready_for_review]
66

@@ -12,10 +12,11 @@ jobs:
1212
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
15+
- uses: peter-evans/rebase@v3
1516
- name: lint_check
1617
shell: bash
1718
run: |
18-
set -e
19-
npm ci
20-
npx eslint --max-warnings 0 src/ backend/
21-
npm run lint-check
19+
set -e
20+
npm ci
21+
npx eslint --max-warnings 0 src/ backend/
22+
npm run lint-check

.github/workflows/lint-markdown-links-daily.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
name: Lint Markdown Links Daily
22
run-name: ${{github.event.pull_request.title}}
33
on:
4-
schedule:
4+
schedule:
55
# Run everyday at 5:00 AM
6-
- cron: "0 5 * * *"
6+
- cron: '0 5 * * *'
77
jobs:
88
markdown-link-check:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12+
- uses: peter-evans/rebase@v3
1213
- uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec
1314
with:
14-
use-quiet-mode: 'yes'
15+
use-quiet-mode: 'yes'
1516
use-verbose-mode: 'yes'
1617
config-file: '.mlc.config.json'
1718
folder-path: '.'

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ name: PR Integration Cluster Tests
22

33
on:
44
pull_request:
5-
types: [ opened, edited, synchronize, reopened, ready_for_review ]
5+
types: [opened, edited, synchronize, reopened, ready_for_review]
66
paths:
7-
- ".github/workflows/pull-integration-cluster-k3d.yml"
8-
- "resources/**"
9-
- "tests/**"
10-
- "nginx/**"
11-
- "src/**"
12-
- "backend/**"
7+
- '.github/workflows/pull-integration-cluster-k3d.yml'
8+
- 'resources/**'
9+
- 'tests/**'
10+
- 'nginx/**'
11+
- 'src/**'
12+
- 'backend/**'
1313

1414
jobs:
1515
run-cluster-test:
@@ -20,11 +20,11 @@ jobs:
2020
with:
2121
comment_on_pr: false
2222
- uses: actions/checkout@v4
23-
# - uses: ./.github/actions/rebase
23+
- uses: ./.github/actions/rebase # Would it work?
2424
- name: Create Single Cluster
2525
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0
2626
with:
27-
cluster-name: "k3dCluster"
27+
cluster-name: 'k3dCluster'
2828
args: >-
2929
--agents 1
3030
--port 80:80@loadbalancer

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: PR Integration Namespace Tests
22

3-
on:
3+
on:
44
pull_request:
55
types: [opened, edited, synchronize, reopened, ready_for_review]
66
paths:
7-
- ".github/workflows/pull-integration-namespace-k3d.yml"
8-
- "resources/**"
9-
- "tests/**"
10-
- "nginx/**"
11-
- "src/**"
12-
- "backend/**"
7+
- '.github/workflows/pull-integration-namespace-k3d.yml'
8+
- 'resources/**'
9+
- 'tests/**'
10+
- 'nginx/**'
11+
- 'src/**'
12+
- 'backend/**'
1313

1414
jobs:
1515
run-namespace-test:
@@ -20,11 +20,11 @@ jobs:
2020
with:
2121
comment_on_pr: false
2222
- uses: actions/checkout@v4
23-
# - uses: ./.github/actions/rebase
23+
- uses: ./.github/actions/rebase # Would it work?
2424
- name: Create Single Cluster
2525
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0
2626
with:
27-
cluster-name: "k3dCluster"
27+
cluster-name: 'k3dCluster'
2828
args: >-
2929
--agents 1
3030
--port 80:80@loadbalancer

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on:
44
pull_request:
55
types: [opened, edited, synchronize, reopened, ready_for_review]
66
paths:
7-
- ".github/workflows/pull-kyma-intergation-tests.yml"
8-
- "resources/**"
9-
- "tests/integration/**"
10-
- "nginx/**"
11-
- "src/**"
12-
- "backend/**"
13-
- "kyma/**"
14-
- "Dockerfile*"
7+
- '.github/workflows/pull-kyma-intergation-tests.yml'
8+
- 'resources/**'
9+
- 'tests/integration/**'
10+
- 'nginx/**'
11+
- 'src/**'
12+
- 'backend/**'
13+
- 'kyma/**'
14+
- 'Dockerfile*'
1515
jobs:
1616
run-integration-test:
1717
runs-on: ubuntu-latest
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
comment_on_pr: false
2323
- uses: actions/checkout@v4
24-
# - uses: ./.github/actions/rebase
24+
- uses: ./.github/actions/rebase # Would it work?
2525
- name: Install k3d
2626
env:
2727
K3D_URL: https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh

.github/workflows/pull-lighthouse.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: PR Lighthouse Test
22

3-
on:
3+
on:
44
pull_request:
55
types: [opened, edited, synchronize, reopened, ready_for_review]
66
paths:
7-
- ".github/workflows/pull-lighthouse.yml"
8-
- "resources/**"
9-
- "tests/**"
10-
- "nginx/**"
11-
- "src/**"
7+
- '.github/workflows/pull-lighthouse.yml'
8+
- 'resources/**'
9+
- 'tests/**'
10+
- 'nginx/**'
11+
- 'src/**'
1212

1313
jobs:
1414
run-lighthouse-test:
@@ -19,11 +19,11 @@ jobs:
1919
with:
2020
comment_on_pr: false
2121
- uses: actions/checkout@v4
22-
# - uses: ./.github/actions/rebase
22+
- uses: ./.github/actions/rebase # Would it work?
2323
- name: Create Single Cluster
2424
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0
2525
with:
26-
cluster-name: "k3dCluster"
26+
cluster-name: 'k3dCluster'
2727
args: >-
2828
--agents 1
2929
--port 80:80@loadbalancer

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: PR Kyma Dashboard Smoke Tests Prod
22

3-
on:
3+
on:
44
pull_request:
55
types: [opened, edited, synchronize, reopened, ready_for_review]
66
paths:
7-
- ".github/workflows/pull-smoke-test-prod.yml"
8-
- "resources/**"
9-
- "tests/kyma/**"
10-
- "nginx/**"
11-
- "src/**"
12-
- "kyma/**"
13-
- "Dockerfile*"
7+
- '.github/workflows/pull-smoke-test-prod.yml'
8+
- 'resources/**'
9+
- 'tests/kyma/**'
10+
- 'nginx/**'
11+
- 'src/**'
12+
- 'kyma/**'
13+
- 'Dockerfile*'
1414

1515
jobs:
1616
run-smoke-test-prod:
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
comment_on_pr: false
2323
- uses: actions/checkout@v4
24-
# - uses: ./.github/actions/rebase
24+
- uses: ./.github/actions/rebase # Would it work?
2525
- name: Install k3d
2626
env:
2727
K3D_URL: https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
set -o pipefail
4040
./.github/scripts/setup-busola.sh | tee busola-build.log
41-
env:
41+
env:
4242
ENV: prod
4343
- name: run_tests
4444
shell: bash

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: PR Kyma Dashboard Smoke Tests Stage
22

3-
on:
3+
on:
44
pull_request:
55
types: [opened, edited, synchronize, reopened, ready_for_review]
66
paths:
7-
- ".github/workflows/pull-smoke-test-stage.yml"
8-
- "resources/**"
9-
- "tests/kyma/**"
10-
- "nginx/**"
11-
- "src/**"
12-
- "kyma/**"
13-
- "Dockerfile*"
7+
- '.github/workflows/pull-smoke-test-stage.yml'
8+
- 'resources/**'
9+
- 'tests/kyma/**'
10+
- 'nginx/**'
11+
- 'src/**'
12+
- 'kyma/**'
13+
- 'Dockerfile*'
1414

1515
jobs:
1616
run-smoke-test-stage:
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
comment_on_pr: false
2323
- uses: actions/checkout@v4
24-
# - uses: ./.github/actions/rebase
24+
- uses: ./.github/actions/rebase # Would it work?
2525
- name: Install k3d
2626
env:
2727
K3D_URL: https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh
@@ -36,7 +36,7 @@ jobs:
3636
shell: bash
3737
run: |
3838
./.github/scripts/setup-busola.sh | tee busola-build.log
39-
env:
39+
env:
4040
ENV: stage
4141
- name: Run tests
4242
shell: bash

0 commit comments

Comments
 (0)