Skip to content

Commit 1ac4dfc

Browse files
authored
Extension policies (#13)
1 parent 7e171f5 commit 1ac4dfc

File tree

5 files changed

+372
-43
lines changed

5 files changed

+372
-43
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/actions.send-message-to-ms-teams@1.0.10
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

0 commit comments

Comments
 (0)