-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix slack messages, add net-contour.
- Loading branch information
Showing
8 changed files
with
134 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
apiVersion: tekton.dev/v1alpha1 | ||
kind: TaskRun | ||
metadata: | ||
generateName: gotool-knative-net-contour- | ||
namespace: default | ||
spec: | ||
taskRef: | ||
name: gotool | ||
inputs: | ||
resources: | ||
- name: source | ||
resourceSpec: | ||
type: git | ||
params: | ||
- name: url | ||
value: https://github.com/knative/net-contour.git | ||
params: | ||
- name: ORGANIZATION | ||
value: knative | ||
- name: REPOSITORY | ||
value: net-contour | ||
- name: ASSIGNEE | ||
value: shashwathi tanzeeb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
apiVersion: tekton.dev/v1alpha1 | ||
kind: TaskRun | ||
metadata: | ||
generateName: misspell-knative-net-contour- | ||
namespace: default | ||
spec: | ||
taskRef: | ||
name: misspell | ||
inputs: | ||
resources: | ||
- name: source | ||
resourceSpec: | ||
type: git | ||
params: | ||
- name: url | ||
value: https://github.com/knative/net-contour.git | ||
params: | ||
- name: ORGANIZATION | ||
value: knative | ||
- name: REPOSITORY | ||
value: net-contour | ||
- name: ASSIGNEE | ||
value: shashwathi tanzeeb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
apiVersion: tekton.dev/v1alpha1 | ||
kind: TaskRun | ||
metadata: | ||
generateName: prettier-knative-net-contour- | ||
namespace: default | ||
spec: | ||
taskRef: | ||
name: prettier | ||
inputs: | ||
resources: | ||
- name: source | ||
resourceSpec: | ||
type: git | ||
params: | ||
- name: url | ||
value: https://github.com/knative/net-contour.git | ||
params: | ||
- name: ORGANIZATION | ||
value: knative | ||
- name: REPOSITORY | ||
value: net-contour | ||
- name: ASSIGNEE | ||
value: shashwathi tanzeeb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
apiVersion: tekton.dev/v1alpha1 | ||
kind: TaskRun | ||
metadata: | ||
generateName: update-deps-knative-net-contour- | ||
namespace: default | ||
spec: | ||
taskRef: | ||
name: dep-update | ||
inputs: | ||
resources: | ||
- name: source | ||
resourceSpec: | ||
type: git | ||
params: | ||
- name: url | ||
value: https://github.com/knative/net-contour.git | ||
params: | ||
- name: ORGANIZATION | ||
value: knative | ||
- name: REPOSITORY | ||
value: net-contour | ||
- name: DEPENDENCIES | ||
value: knative.dev/test-infra knative.dev/pkg knative.dev/serving knative.dev/eventing | ||
- name: ASSIGNEE | ||
value: shashwathi tanzeeb | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
apiVersion: sources.eventing.knative.dev/v1alpha1 | ||
kind: GitHubSource | ||
metadata: | ||
name: knative-net-contour | ||
spec: | ||
# The types of events to which we are listening. | ||
eventTypes: | ||
- pull_request | ||
- issues | ||
|
||
# The repository to which we are listening. | ||
# There should be a file like this for each watched repository. | ||
ownerAndRepository: knative/net-contour | ||
|
||
# This is the Github access token that is used to register | ||
# the webhook. | ||
accessToken: | ||
secretKeyRef: | ||
name: github-hook-secret | ||
key: accessToken | ||
|
||
# This is the secret that is registered alongside the webhook | ||
# for Github to use to identify itself when calling our endpoint. | ||
secretToken: | ||
secretKeyRef: | ||
name: github-hook-secret | ||
key: secretToken | ||
|
||
sink: | ||
apiVersion: eventing.knative.dev/v1alpha1 | ||
kind: Broker | ||
name: default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters