@socialgouv/fiches-vdd-types 2.1041.0 → 2.1042.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 +4 -4
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
|
@@ -76,11 +76,11 @@ jobs:
|
|
|
76
76
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
77
77
|
NPM_TOKEN: ${{ secrets.SOCIALGROOVYBOT_NPM_TOKEN }}
|
|
78
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
79
|
- uses: mattermost/action-mattermost-notify@master
|
|
84
80
|
if: failure()
|
|
85
81
|
with:
|
|
86
82
|
MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
|
|
83
|
+
PAYLOAD: |-
|
|
84
|
+
{
|
|
85
|
+
"text": "Le fetch des fiches-vdd a échoué, veuillez relancer le job : ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}",
|
|
86
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [2.1042.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1041.0...v2.1042.0) (2024-05-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* action pour notifier sur mattermost ([#223](https://github.com/SocialGouv/fiches-vdd/issues/223)) ([966db03](https://github.com/SocialGouv/fiches-vdd/commit/966db034f659b9c29450d1bb813b025a4f45d7cc))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **data:** 20240517_2217 update ([4d87284](https://github.com/SocialGouv/fiches-vdd/commit/4d872849b73f80578c336ed349b8a76877395a1c))
|
|
12
|
+
|
|
1
13
|
# [2.1041.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1040.0...v2.1041.0) (2024-05-16)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED