Skip to content

Commit 5877794

Browse files
committed
[DATALAD RUNCMD] regenerate templates after modifying workflow
=== Do not change lines below === { "chain": [ "47fa1b854c9e94abc0fe7aadb8df8a8cd6525808", "ff26f850198044041285400f56f451b5a76d95d3", "424897650eadcbf7c13636064073bde0df7a6eda" ], "cmd": "make -C .github/workflows/template", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
1 parent 9ff126a commit 5877794

File tree

3 files changed

+30
-12
lines changed

3 files changed

+30
-12
lines changed

.github/workflows/build-macos.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,16 @@ jobs:
169169

170170
- name: Send e-mail on failed run
171171
if: failure() && contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name)
172-
uses: dawidd6/action-send-mail@v6
172+
# freeze to v6
173+
uses: dawidd6/action-send-mail@6d98ae34d733f9a723a9e04e94f2f24ba05e1402
173174
with:
174175
server_address: ${{ secrets.NOTIFY_SMTP_HOST }}
175176
server_port: ${{ secrets.NOTIFY_SMTP_PORT }}
176177
username: ${{ secrets.NOTIFY_SMTP_USERNAME }}
177178
password: ${{ secrets.NOTIFY_SMTP_PASSWORD }}
178-
from: GitHub Actions Notifications
179+
secure: ${{ secrets.NOTIFY_SMTP_SECURE }}
180+
ignore_cert: ${{ secrets.NOTIFY_SMTP_IGNORE_CERT }}
181+
from: "GitHub Actions Notifications <${{ secrets.NOTIFY_SMTP_USERNAME }}@${{ secrets.NOTIFY_SMTP_HOST }}>"
179182
to: ${{ secrets.NOTIFY_RECIPIENT }}
180183
subject: '[${{ github.repository }}] Build on macOS failed!'
181184
body: |
@@ -308,13 +311,16 @@ jobs:
308311

309312
- name: Send e-mail on failed run
310313
if: failure() && contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name)
311-
uses: dawidd6/action-send-mail@v6
314+
# freeze to v6
315+
uses: dawidd6/action-send-mail@6d98ae34d733f9a723a9e04e94f2f24ba05e1402
312316
with:
313317
server_address: ${{ secrets.NOTIFY_SMTP_HOST }}
314318
server_port: ${{ secrets.NOTIFY_SMTP_PORT }}
315319
username: ${{ secrets.NOTIFY_SMTP_USERNAME }}
316320
password: ${{ secrets.NOTIFY_SMTP_PASSWORD }}
317-
from: GitHub Actions Notifications
321+
secure: ${{ secrets.NOTIFY_SMTP_SECURE }}
322+
ignore_cert: ${{ secrets.NOTIFY_SMTP_IGNORE_CERT }}
323+
from: "GitHub Actions Notifications <${{ secrets.NOTIFY_SMTP_USERNAME }}@${{ secrets.NOTIFY_SMTP_HOST }}>"
318324
to: ${{ secrets.NOTIFY_RECIPIENT }}
319325
subject: '[${{ github.repository }}] Tests of macOS build failed!'
320326
body: |

.github/workflows/build-ubuntu.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,13 +225,16 @@ jobs:
225225

226226
- name: Send e-mail on failed run
227227
if: failure() && contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name)
228-
uses: dawidd6/action-send-mail@v6
228+
# freeze to v6
229+
uses: dawidd6/action-send-mail@6d98ae34d733f9a723a9e04e94f2f24ba05e1402
229230
with:
230231
server_address: ${{ secrets.NOTIFY_SMTP_HOST }}
231232
server_port: ${{ secrets.NOTIFY_SMTP_PORT }}
232233
username: ${{ secrets.NOTIFY_SMTP_USERNAME }}
233234
password: ${{ secrets.NOTIFY_SMTP_PASSWORD }}
234-
from: GitHub Actions Notifications
235+
secure: ${{ secrets.NOTIFY_SMTP_SECURE }}
236+
ignore_cert: ${{ secrets.NOTIFY_SMTP_IGNORE_CERT }}
237+
from: "GitHub Actions Notifications <${{ secrets.NOTIFY_SMTP_USERNAME }}@${{ secrets.NOTIFY_SMTP_HOST }}>"
235238
to: ${{ secrets.NOTIFY_RECIPIENT }}
236239
subject: '[${{ github.repository }}] Build on Ubuntu failed!'
237240
body: |
@@ -357,13 +360,16 @@ jobs:
357360

358361
- name: Send e-mail on failed run
359362
if: failure() && contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name)
360-
uses: dawidd6/action-send-mail@v6
363+
# freeze to v6
364+
uses: dawidd6/action-send-mail@6d98ae34d733f9a723a9e04e94f2f24ba05e1402
361365
with:
362366
server_address: ${{ secrets.NOTIFY_SMTP_HOST }}
363367
server_port: ${{ secrets.NOTIFY_SMTP_PORT }}
364368
username: ${{ secrets.NOTIFY_SMTP_USERNAME }}
365369
password: ${{ secrets.NOTIFY_SMTP_PASSWORD }}
366-
from: GitHub Actions Notifications
370+
secure: ${{ secrets.NOTIFY_SMTP_SECURE }}
371+
ignore_cert: ${{ secrets.NOTIFY_SMTP_IGNORE_CERT }}
372+
from: "GitHub Actions Notifications <${{ secrets.NOTIFY_SMTP_USERNAME }}@${{ secrets.NOTIFY_SMTP_HOST }}>"
367373
to: ${{ secrets.NOTIFY_RECIPIENT }}
368374
subject: '[${{ github.repository }}] Tests of Ubuntu build failed!'
369375
body: |

.github/workflows/build-windows.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,16 @@ jobs:
192192

193193
- name: Send e-mail on failed run
194194
if: failure() && contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name)
195-
uses: dawidd6/action-send-mail@v6
195+
# freeze to v6
196+
uses: dawidd6/action-send-mail@6d98ae34d733f9a723a9e04e94f2f24ba05e1402
196197
with:
197198
server_address: ${{ secrets.NOTIFY_SMTP_HOST }}
198199
server_port: ${{ secrets.NOTIFY_SMTP_PORT }}
199200
username: ${{ secrets.NOTIFY_SMTP_USERNAME }}
200201
password: ${{ secrets.NOTIFY_SMTP_PASSWORD }}
201-
from: GitHub Actions Notifications
202+
secure: ${{ secrets.NOTIFY_SMTP_SECURE }}
203+
ignore_cert: ${{ secrets.NOTIFY_SMTP_IGNORE_CERT }}
204+
from: "GitHub Actions Notifications <${{ secrets.NOTIFY_SMTP_USERNAME }}@${{ secrets.NOTIFY_SMTP_HOST }}>"
202205
to: ${{ secrets.NOTIFY_RECIPIENT }}
203206
subject: '[${{ github.repository }}] Build on Windows failed!'
204207
body: |
@@ -296,13 +299,16 @@ jobs:
296299

297300
- name: Send e-mail on failed run
298301
if: failure() && contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name)
299-
uses: dawidd6/action-send-mail@v6
302+
# freeze to v6
303+
uses: dawidd6/action-send-mail@6d98ae34d733f9a723a9e04e94f2f24ba05e1402
300304
with:
301305
server_address: ${{ secrets.NOTIFY_SMTP_HOST }}
302306
server_port: ${{ secrets.NOTIFY_SMTP_PORT }}
303307
username: ${{ secrets.NOTIFY_SMTP_USERNAME }}
304308
password: ${{ secrets.NOTIFY_SMTP_PASSWORD }}
305-
from: GitHub Actions Notifications
309+
secure: ${{ secrets.NOTIFY_SMTP_SECURE }}
310+
ignore_cert: ${{ secrets.NOTIFY_SMTP_IGNORE_CERT }}
311+
from: "GitHub Actions Notifications <${{ secrets.NOTIFY_SMTP_USERNAME }}@${{ secrets.NOTIFY_SMTP_HOST }}>"
306312
to: ${{ secrets.NOTIFY_RECIPIENT }}
307313
subject: '[${{ github.repository }}] Tests of Windows build failed!'
308314
body: |

0 commit comments

Comments
 (0)