Skip to content

Commit bcd0a74

Browse files
authored
Merge branch 'master' into master
2 parents 8539955 + 6ffee99 commit bcd0a74

9 files changed

+7323
-8367
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Check for Escaped Unicode Characters
2+
3+
on:
4+
push:
5+
paths:
6+
- 'fhir-ig-list.json'
7+
pull_request:
8+
paths:
9+
- 'fhir-ig-list.json'
10+
11+
jobs:
12+
check-unicode:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Check for escaped Unicode characters
17+
run: |
18+
if grep -q '\\u' fhir-ig-list.json; then
19+
echo "Error: Escaped Unicode characters found in fhir-ig-list.json"
20+
echo "Failing lines:"
21+
grep -n '\\u' fhir-ig-list.json
22+
exit 1
23+
else
24+
echo "No escaped Unicode characters found."
25+
fi

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ Other registries:
2020

2121
* http://registry.fhir.org: a registry of conformance resources, including ones contained in IGs registered here
2222

23+
## FHIR Foundation Project Statement
24+
25+
* Maintainers: Grahame Grieve
26+
* Issues / Discussion: https://chat.fhir.org/#narrow/stream/179239-tooling
27+
* License: Content is licensed under Creative Commons Public Domain
28+
* Contribution Policy: Contributions made publicly through github PRs. Json files must be valid.
29+
* Security Information: This is only static content, so there should be no security issues. Report any through standard github reporting mechanisms
30+
2331
### Editing the Registry
2432

2533
If you want to register a new implementation guide, or a new edition of an existing guide, edit fhir-ig-list.json and then make your changes into a pull request. Note that you must make sure that the JSON file is valid, or your changes will be rejected by the build process. JSON validity is checked by a python script in the [CI/CD pipelines](#cicd).

0 commit comments

Comments
 (0)