Skip to content

Commit ee210b6

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/main'
2 parents 367a7c7 + 6f65b5c commit ee210b6

File tree

6 files changed

+486
-75
lines changed

6 files changed

+486
-75
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: teams-notification
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
8+
jobs:
9+
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
14+
- name: Send message to MS Teams
15+
uses: dhollerbach/[email protected]
16+
env:
17+
TEAMS_WEB_HOOK: ${{ secrets.TEAMSWEBHOOK }}
18+
if: "${{ env.TEAMS_WEB_HOOK != '' }}"
19+
with:
20+
webhook: ${{ secrets.TEAMSWEBHOOK }}
21+
message: 'New changes in the GitHub Data Product Specification'
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: test-compliancy
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
8+
jobs:
9+
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Set up Go
16+
uses: actions/setup-go@v3
17+
with:
18+
go-version: 1.18
19+
- name: Install Cue
20+
run: |
21+
go install cuelang.org/go/cmd/cue@latest
22+
23+
- name: Test
24+
run: cue vet example.yaml data-product-specification.cue

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Default ignored files
2+
/.idea/workspace.xml
3+
/.idea
4+
/.idea/*

0 commit comments

Comments
 (0)