Skip to content

Commit

Permalink
add .github
Browse files Browse the repository at this point in the history
  • Loading branch information
nriss committed May 15, 2024
1 parent ae4f68b commit 8addad9
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/ig-issue-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: IG issue template
about: Issue template for ANS Implementation Guide
title: ''
labels: ''
assignees: ''

---

# Description du problème


# Fichier•s concerné•s


# Solution proposée
9 changes: 9 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Description des changements

* [changement 1]
* [changement 2]
* ...

## Preview

https://ansforge.github.io/IG-fhir-annuaire/[ajouter_nom_de_la_branche]/ig
23 changes: 23 additions & 0 deletions .github/workflows/fhir-worklows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Workflow Sushi Tests gitHubpages
on:
workflow_call:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run-sushi-tests_gitHubPages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: igSource
- uses: ansforge/IG-workflows@main
with:
repo_ig: "./igSource"
github_page: "true"
github_page_token: ${{ secrets.GITHUB_TOKEN }}
bake: "false"
validator_cli: "true"
generate_testscript: "true"
generate_plantuml : "true"
generate_mapping_plantuml : "true"
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Workflow Release to IG-website-release
on:
workflow_call:

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: igSource
- uses: ansforge/IG-workflows@v0.2.0
with:
repo_ig: "./igSource"
github_page: "true"
github_page_token: ${{ secrets.GITHUB_TOKEN }}
bake: "true"
nos: "true"
validator_cli: "true"
publish_repo: "ansforge/IG-website-release"
publish_repo_token : ${{ secrets.ANS_IG_API_TOKEN }}
publish_path_outpout : "./IG-website-release/www/ig/fhir"

0 comments on commit 8addad9

Please sign in to comment.