Skip to content

Commit 5f91c88

Browse files
authored
Merge branch 'main' into config_dependabot
2 parents 5847838 + 802f366 commit 5f91c88

File tree

6 files changed

+21
-77
lines changed

6 files changed

+21
-77
lines changed

.github/scripts/issue_create.sh

-11
This file was deleted.

.github/scripts/issue_transaction.sh

-8
This file was deleted.

.github/workflows/ci-repo.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,25 @@ on:
55
branches:
66
- "main"
77
- "release-*"
8+
89
pull_request:
910
branches:
1011
- "main"
1112
- "release-*"
1213

14+
schedule:
15+
- cron: "35 5 * * *" # every day @ 5:35am UTC
16+
17+
workflow_dispatch:
18+
1319
jobs:
1420
unit-test-lookup-image:
1521
runs-on: ubuntu-latest
1622
outputs:
1723
builder-image: ${{ steps.grepBuilder.outputs.builder }}
1824
steps:
1925
- uses: actions/checkout@v4
26+
2027
- name: Lookup builder image from the project's Dockerfile
2128
id: grepBuilder
2229
run: |
@@ -55,13 +62,15 @@ jobs:
5562
run: npm run test -- --coverage --watchAll=false
5663

5764
- name: Upload to codecov (client)
65+
if: ${{ github.event.pull_request }}
5866
uses: codecov/codecov-action@v4
5967
with:
6068
flags: client
61-
directory: ./*/coverage
69+
directory: ./client/coverage
6270

6371
- name: Upload to codecov (server)
72+
if: ${{ github.event.pull_request }}
6473
uses: codecov/codecov-action@v4
6574
with:
6675
flags: server
67-
directory: ./*/coverage
76+
directory: ./server/coverage

.github/workflows/image-build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
registry: "quay.io/konveyor"
2121
image_name: "tackle2-ui"
2222
containerfile: "./Dockerfile"
23-
architectures: '[ "amd64", "arm64", "ppc64le", "s390x" ]'
23+
architectures: '[ "amd64", "arm64" ]'
2424
# 2023-03-19: currently needed for npm@10
2525
extra-args: "--ulimit nofile=4096:4096"
2626
secrets:

.github/workflows/issues.yml

-55
This file was deleted.

OWNERS.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Project Owners
2+
3+
This file specifies the code owners of the project.
4+
5+
## Our Maintainers
6+
7+
- Ian Bolton ([ibolton336](https://github.com/ibolton336))
8+
- Scott Dickerson ([sjd78](https://github.com/sjd78))
9+
- Radoslaw Szwajkowski ([rszwajko](https://github.com/rszwajko))

0 commit comments

Comments
 (0)