Skip to content

Commit

Permalink
Merge branch 'main' into broken-modal-title
Browse files Browse the repository at this point in the history
  • Loading branch information
ibolton336 authored May 8, 2024
2 parents 8081005 + ba613a2 commit 9cc5c93
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 78 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ updates:
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: ":ghost: "
allow:
- dependency-name: "@patternfly/*"
dependency-type: "direct"
11 changes: 0 additions & 11 deletions .github/scripts/issue_create.sh

This file was deleted.

8 changes: 0 additions & 8 deletions .github/scripts/issue_transaction.sh

This file was deleted.

13 changes: 11 additions & 2 deletions .github/workflows/ci-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,25 @@ on:
branches:
- "main"
- "release-*"

pull_request:
branches:
- "main"
- "release-*"

schedule:
- cron: "35 5 * * *" # every day @ 5:35am UTC

workflow_dispatch:

jobs:
unit-test-lookup-image:
runs-on: ubuntu-latest
outputs:
builder-image: ${{ steps.grepBuilder.outputs.builder }}
steps:
- uses: actions/checkout@v4

- name: Lookup builder image from the project's Dockerfile
id: grepBuilder
run: |
Expand Down Expand Up @@ -55,13 +62,15 @@ jobs:
run: npm run test -- --coverage --watchAll=false

- name: Upload to codecov (client)
if: ${{ github.event.pull_request }}
uses: codecov/codecov-action@v4
with:
flags: client
directory: ./*/coverage
directory: ./client/coverage

- name: Upload to codecov (server)
if: ${{ github.event.pull_request }}
uses: codecov/codecov-action@v4
with:
flags: server
directory: ./*/coverage
directory: ./server/coverage
2 changes: 1 addition & 1 deletion .github/workflows/image-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
registry: "quay.io/konveyor"
image_name: "tackle2-ui"
containerfile: "./Dockerfile"
architectures: '[ "amd64", "arm64", "ppc64le", "s390x" ]'
architectures: '[ "amd64", "arm64" ]'
# 2023-03-19: currently needed for npm@10
extra-args: "--ulimit nofile=4096:4096"
secrets:
Expand Down
55 changes: 0 additions & 55 deletions .github/workflows/issues.yml

This file was deleted.

9 changes: 9 additions & 0 deletions OWNERS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Project Owners

This file specifies the code owners of the project.

## Our Maintainers

- Ian Bolton ([ibolton336](https://github.com/ibolton336))
- Scott Dickerson ([sjd78](https://github.com/sjd78))
- Radoslaw Szwajkowski ([rszwajko](https://github.com/rszwajko))
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ export const ApplicationsTable: React.FC = () => {
? [
<DropdownItem
key="applications-bulk-delete"
isDisabled={selectedRows.length < 1}
onClick={() => {
setApplicationsToDelete(selectedRows);
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export const MigrationTargets: React.FC = () => {
</GridItem>
<GridItem span={2} className={spacing.mtSm}>
<Button
id="clear-repository"
id="create-target"
isInline
className={spacing.mlMd}
onClick={() => setCreateUpdateModalState("create")}
Expand Down

0 comments on commit 9cc5c93

Please sign in to comment.