Skip to content

Commit d2324b8

Browse files
authoredDec 7, 2023
supporting cloudevents for work agent (open-cluster-management-io#321)
Signed-off-by: Wei Liu <liuweixa@redhat.com>
1 parent 5884bc5 commit d2324b8

File tree

306 files changed

+44427
-118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

306 files changed

+44427
-118
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CloudEventsIntegration
2+
3+
on:
4+
workflow_dispatch: {}
5+
pull_request:
6+
paths:
7+
- 'pkg/work/spoke/*.go'
8+
branches:
9+
- main
10+
- release-*
11+
12+
env:
13+
GO_VERSION: '1.20'
14+
GO_REQUIRED_MIN_VERSION: ''
15+
16+
permissions:
17+
contents: read
18+
19+
jobs:
20+
integration:
21+
name: cloudevents-integration
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: checkout code
25+
uses: actions/checkout@v3
26+
- name: install Go
27+
uses: actions/setup-go@v3
28+
with:
29+
go-version: ${{ env.GO_VERSION }}
30+
- name: integration
31+
run: make test-cloudevents-integration

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ munge-csv
2525
*.out
2626
_output/
2727
.idea/
28+
*.diff
2829

2930
.kubeconfig
3031
.hub-kubeconfig

0 commit comments

Comments
 (0)
Please sign in to comment.