Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/teams-notification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: teams-notification

on:
push:
branches:
- 'main'

jobs:

build:
runs-on: ubuntu-latest
steps:

- name: Send message to MS Teams
uses: dhollerbach/actions.send-message-to-ms-teams@1.0.10
env:
TEAMS_WEB_HOOK: ${{ secrets.TEAMSWEBHOOK }}
if: "${{ env.TEAMS_WEB_HOOK != '' }}"
with:
webhook: ${{ secrets.TEAMSWEBHOOK }}
message: 'New changes in the GitHub Data Product Specification'
24 changes: 24 additions & 0 deletions .github/workflows/test-compliancy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: test-compliancy

on:
push:
branches:
- '**'

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Install Cue
run: |
go install cuelang.org/go/cmd/cue@latest

- name: Test
run: cue vet example.yaml data-product-specification.cue
Loading