Skip to content

Commit

Permalink
📂 Apply fork specific files
Browse files Browse the repository at this point in the history
  • Loading branch information
serverless-qe committed Dec 10, 2022
1 parent 5b799ab commit b79b9c3
Show file tree
Hide file tree
Showing 32 changed files with 1,877 additions and 494 deletions.
5 changes: 5 additions & 0 deletions .deviate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
upstream: https://github.com/knative-sandbox/kn-plugin-event.git
tags:
synchronize: true
resyncReleases:
enabled: true
11 changes: 11 additions & 0 deletions .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Code Style

on:
pull_request:
branches: [ 'main', 'release-*' ]

jobs:

style:
uses: knative/actions/.github/workflows/style.yaml@main

16 changes: 16 additions & 0 deletions .github/workflows/images/test/eventshub/Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM docker.io/library/golang:1.19 AS builder

COPY . /code
WORKDIR /code

RUN go build \
-o ./build/eventshub \
./vendor/knative.dev/reconciler-test/cmd/eventshub

FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

COPY --from=builder /code/build/eventshub /app/eventshub

USER 65532

ENTRYPOINT ["/app/eventshub"]
16 changes: 16 additions & 0 deletions .github/workflows/images/test/wathola-forwarder/Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM docker.io/library/golang:1.19 AS builder

COPY . /code
WORKDIR /code

RUN go build \
-o ./build/wathola-forwarder \
./vendor/knative.dev/eventing/test/test_images/wathola-forwarder

FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

COPY --from=builder /code/build/wathola-forwarder /app/wathola-forwarder

USER 65532

ENTRYPOINT ["/app/wathola-forwarder"]
96 changes: 0 additions & 96 deletions .github/workflows/knative-boilerplate.yaml

This file was deleted.

61 changes: 0 additions & 61 deletions .github/workflows/knative-donotsubmit.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/knative-go-build.yaml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/knative-go-test.yaml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/workflows/knative-releasability.yaml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/knative-release-notes.yaml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/knative-security.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/knative-stale.yaml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/knative-style.yaml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/knative-verify.yaml

This file was deleted.

Loading

0 comments on commit b79b9c3

Please sign in to comment.