Skip to content
This repository was archived by the owner on Apr 24, 2026. It is now read-only.
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
2 changes: 1 addition & 1 deletion .github/workflows/data-models-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish data models snapshots
on:
push:
branches:
- 'data-models-staging'
- 'main'
paths:
- 'data-models/**'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jargon-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ on:
types: [ 'jargon_onRelease' ]

jobs:
jargon_snapshot:
jargon_release:
uses: uncefact/.github/.github/workflows/untp-jargon-release.yml@main
secrets: inherit
19 changes: 17 additions & 2 deletions .github/workflows/validate-jargon-artefacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Validate Jargon Artefacts
on:
pull_request:
branches:
- 'data-models-staging'
- 'main'
paths:
- 'data-models/**'
workflow_dispatch:
Expand All @@ -15,13 +15,23 @@ jobs:
steps:

- uses: actions/checkout@v4
- name: Download client payload

- name: Download snapshot payload
if: startsWith( github.head_ref, 'feature/jargon-sync-' )
run: |
branch_name="${{ github.head_ref }}"
gh run download -n client-payload-${branch_name#*sync-}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Download release payload
if: startsWith( github.head_ref, 'feature/jargon-release-' )
run: |
branch_name="${{ github.head_ref }}"
gh run download -n client-payload-${branch_name#*release-}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Read file and set env variable
run: |
echo "CLIENT_PAYLOAD<<EOF" >> $GITHUB_ENV
Expand All @@ -32,3 +42,8 @@ jobs:
uses: ./.github/actions/validate-jargon-artefacts
with:
jargon-webhook-payload: ${{ env.CLIENT_PAYLOAD }}

validate-jargon-release-artefacts:
if: startsWith( github.head_ref, 'feature/jargon-release-' )
uses: uncefact/.github/.github/workflows/untp-validate-jargon-release.yml@main
secrets: inherit