Commit Graph

242 Commits

Author SHA1 Message Date
niclaz c6ee5948b4
Create upload-pages-artifact.yaml to have side process for artifact 2024-09-05 19:47:44 +02:00
niclaz 604f6572fd
Merge branch 'web3privacy:main' into data-tests-patch 2024-09-05 19:36:39 +02:00
niclaz 784bf81edd
Updated deploy.yml using template actions/upload-artifact 2024-09-05 19:35:48 +02:00
Mykola Siusko 35a2c193c1
Merge pull request #15 from niclaz/data-tests-patch
Data tests patch - removed actions/artifact-upload from build process in deploy.yaml ! improved README.md
2024-09-05 19:15:34 +02:00
niclaz ea7c52d136
fixed typo tab in deploy.yaml 2024-09-05 19:00:15 +02:00
niclaz d79b2be257
removed upload-artifacts from deploy.yml 2024-09-05 18:45:34 +02:00
niclaz 3cc949ec5f
Fixing actions/upload-artifact entry in deploy.yml 2024-09-05 17:47:10 +02:00
niclaz f203a4667d
Merge branch 'web3privacy:main' into data-tests-patch 2024-09-05 16:51:31 +02:00
niclaz 1325e94779
Improved README.md 2024-09-05 16:48:02 +02:00
Mykola Siusko 56685cbced
Merge pull request #14 from niclaz/data-tests-patch
Data tests patch - fixing empty country field error & improving schema regex
2024-09-05 16:32:07 +02:00
niclaz 73df1f40e7
Updated schema - replaced regex pattern for country in index.yaml
The previous regex pattern under country was `^\\w{2}$` and this seemed to not work with the submission of two letter country codes

replaced it with the regex `^[a-z]{2}$` which is used for the same two letter code within the schema already
2024-09-05 16:16:05 +02:00
niclaz 9c45038899
Removed empty 'country' field in pie-man.yaml 2024-09-05 16:08:16 +02:00
Mykola Siusko e5c4551ade
Merge pull request #13 from niclaz/data-tests-patch
data test patch - fixing new error (no speaker called tsu-kareta)
2024-09-04 23:02:16 +02:00
niclaz 23e96f7319
replaced 'tsu-kareta' with alan-scott (twitter handle) 2024-09-04 21:06:27 +02:00
Mykola Siusko 163324bbed
Merge pull request #11 from niclaz/data-tests-patch
Data tests patch - removing hyphens from speaker entries
2024-09-04 20:51:44 +02:00
niclaz 43ec255174
Updated speakers of rome meetup in index.yaml 2024-09-04 20:33:47 +02:00
niclaz d02eda43c2
bump of std version to 0.224.0 in sync.js 2024-08-31 03:47:28 +02:00
niclaz 0b69af2931
bump of std version to 0.224.0 in img-opt.js 2024-08-31 03:47:03 +02:00
niclaz a6b20e9bfd
bumping std version to 0.224.0 in images.js 2024-08-31 03:46:27 +02:00
niclaz 9251ba9472
Update alex-gluchowski.yaml 2024-08-31 03:05:58 +02:00
niclaz a412e36588
Update adrian-brink.yaml 2024-08-31 03:05:52 +02:00
niclaz 6267d98bbd
Update moritz-boullenger.yaml 2024-08-31 03:05:45 +02:00
niclaz 758ded2265
Update antoni-zolciak.yaml 2024-08-31 03:05:39 +02:00
niclaz 657d139699
Update scott-moore.yaml 2024-08-31 03:04:13 +02:00
niclaz cb84c6df84
Update sebastian-burgel.yaml 2024-08-31 03:03:59 +02:00
niclaz 394174e8fc
Update max-hampshire.yaml 2024-08-31 03:02:51 +02:00
niclaz bef2225ced
Update mario-havel.yaml 2024-08-31 03:02:24 +02:00
niclaz fcad5f9700
Update rik-krieger.yaml 2024-08-31 03:02:12 +02:00
niclaz 7636f99ae4
Update alan-scott.yaml 2024-08-31 03:01:56 +02:00
niclaz 0db2380866
Update remi-gai.yaml 2024-08-31 03:01:25 +02:00
niclaz 7534966093
Update pie-man.yaml 2024-08-31 03:01:10 +02:00
niclaz 91bf23d23e
Update gabari.yaml 2024-08-31 03:00:54 +02:00
Mykola Siusko ce9b951f7f
Merge pull request #10 from niclaz/data-tests-patch
Data tests patch - fixing regex issue in caption of speaker
2024-08-30 19:26:17 +02:00
niclaz 09e6bcaad7
Updated tim-bansemer.yaml to fix regex error in URL
Replaced caption with the role he has listed on LinkedIn
2024-08-30 17:20:48 +02:00
niclaz 0c225fec71
removing regex 'pattern' to the index.yaml file - reverting PR #9 2024-08-30 15:20:58 +02:00
Mykola Siusko a3a305c13a
Merge pull request #9 from niclaz/main
data tests patch - fixing the error within test.js
2024-08-28 21:49:48 +02:00
niclaz a9ebb98429
Merge branch 'web3privacy:main' into main 2024-08-28 21:39:34 +02:00
niclaz 85719df1db
Extending the caption section of schema - regex to include URLs in index.yaml
Following up on this error:
https://github.com/web3privacy/data/actions/runs/10602350927/job/29384187270

Investigated to find that the error was because the caption entry of a speaker had many URL links within then, so breaking the configuration - added the following regex to the pattern for caption:


```
'^((([A-Za-z]{3,9}:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)'
```

Tested the regex expression in https://regex101.com/ first to ensure it worked with url format
2024-08-28 21:39:03 +02:00
Mykola Siusko e4f2f661b5
Merge pull request #8 from niclaz/data-tests-patch
Data tests patch - fixed typo on ajv-format + updated package in .workflow
2024-08-28 20:27:31 +02:00
niclaz 354d5352c2
bumped version and changed target of upload-pages-artifact@v3
actions/upload-pages-artifact@v3
became
actions/upload-artifact@v4
2024-08-28 19:24:28 +02:00
niclaz 82861b7e0b
Merge branch 'web3privacy:main' into data-tests-patch 2024-08-28 19:09:13 +02:00
niclaz e869827893
Fixed typo within test.js that was failing Github Build
npm:ajv-formats@3.0.1
instead of
npm:ajv-formats@3.O.1

https://github.com/web3privacy/data/actions/runs/10537593173/job/29199162508
2024-08-28 19:08:30 +02:00
Mykola Siusko e9533d9224
Merge pull request #7 from niclaz/data-tests-patch
Data tests patch # 2 - bumping test versions, cleaning up /src/people and chaning schema/index.yaml
2024-08-24 11:53:02 +02:00
niclaz 5c3ffec2f7
changed privacy-corner to 'pc' instead of 'c' + cleaned up old events (commented code) 2024-08-23 23:38:27 +02:00
niclaz 52847454e6
Rename wslyvh.yaml to wesley.yaml 2024-08-23 23:33:44 +02:00
niclaz e3fc4f19db
Update wslyvh.yaml 2024-08-23 23:33:06 +02:00
niclaz b644fb10ba
Update tim-bansemer.yaml 2024-08-23 23:32:35 +02:00
niclaz 12e7947342
Update mario-havel.yaml 2024-08-23 23:30:35 +02:00
niclaz 232cbdb8f4
Update limone-eth.yaml 2024-08-23 23:29:59 +02:00
niclaz 06db0128bb
fixing juraj-bednar.yaml 2024-08-23 23:29:18 +02:00