@socialgouv/fiches-vdd-types 2.1018.0 → 2.1020.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/fetch.yml +9 -0
- package/CHANGELOG.md +15 -0
- package/package.json +1 -1
|
@@ -75,3 +75,12 @@ jobs:
|
|
|
75
75
|
GIT_COMMITTER_NAME: ${{ secrets.SOCIALGROOVYBOT_NAME }}
|
|
76
76
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
77
77
|
NPM_TOKEN: ${{ secrets.SOCIALGROOVYBOT_NPM_TOKEN }}
|
|
78
|
+
|
|
79
|
+
- name: Create the Mattermost Message
|
|
80
|
+
if: failure()
|
|
81
|
+
run: |
|
|
82
|
+
echo "{\"text\":\"Le fetch des fiches-vdd a échoué, veuillez relancer le job : ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}\"}" > mattermost.json
|
|
83
|
+
- uses: mattermost/action-mattermost-notify@master
|
|
84
|
+
if: failure()
|
|
85
|
+
with:
|
|
86
|
+
MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# [2.1020.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1019.0...v2.1020.0) (2024-04-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **data:** 20240425_2216 update ([8893ffa](https://github.com/SocialGouv/fiches-vdd/commit/8893ffa0c1fb09f950278ed81c9b1e83b3a4319b))
|
|
7
|
+
|
|
8
|
+
# [2.1019.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1018.0...v2.1019.0) (2024-04-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **action:** ajout d'un envoi de message à mattermost en cas d'erreur ([fe60aa4](https://github.com/SocialGouv/fiches-vdd/commit/fe60aa4e099746f35b7067d701f67f4cd2bb8cdc))
|
|
14
|
+
* **data:** 20240424_2219 update ([ce07650](https://github.com/SocialGouv/fiches-vdd/commit/ce07650b25628d0eaf8fb6b48fbd51cba4492d31))
|
|
15
|
+
|
|
1
16
|
# [2.1018.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1017.0...v2.1018.0) (2024-04-23)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED