Skip to content

Commit 735d373

Browse files
committed
Make trivial formatting changes to "Check Certificates" workflow
No functional change, and neither is necessarily superior, but this is the formatting style either defined in the "template", or by the repository's Prettier formatting configuration preferences, so it must be brought into compliance here as well.
1 parent 4b36852 commit 735d373

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/check-certificates.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ name: Check Certificates
44
on:
55
push:
66
paths:
7-
- ".github/workflows/check-certificates.ya?ml"
7+
- '.github/workflows/check-certificates.ya?ml'
88
pull_request:
99
paths:
10-
- ".github/workflows/check-certificates.ya?ml"
10+
- '.github/workflows/check-certificates.ya?ml'
1111
schedule:
1212
# Run every 10 hours.
13-
- cron: "0 */10 * * *"
13+
- cron: '0 */10 * * *'
1414
workflow_dispatch:
1515
repository_dispatch:
1616

@@ -25,9 +25,7 @@ jobs:
2525
if: >
2626
(github.event_name != 'pull_request' && github.repository == 'arduino/arduino-ide') ||
2727
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'arduino/arduino-ide')
28-
2928
runs-on: ubuntu-latest
30-
3129
strategy:
3230
fail-fast: false
3331

@@ -68,7 +66,6 @@ jobs:
6866
6967
- name: Slack notification of certificate verification failure
7068
if: failure()
71-
uses: rtCamp/[email protected]
7269
env:
7370
SLACK_WEBHOOK: ${{ secrets.TEAM_TOOLING_CHANNEL_SLACK_WEBHOOK }}
7471
SLACK_MESSAGE: |
@@ -77,6 +74,7 @@ jobs:
7774
:warning::warning::warning::warning:
7875
SLACK_COLOR: danger
7976
MSG_MINIMAL: true
77+
uses: rtCamp/[email protected]
8078

8179
- name: Get days remaining before certificate expiration date
8280
env:
@@ -122,7 +120,6 @@ jobs:
122120
- name: Slack notification of pending certificate expiration
123121
# Don't send spurious expiration notification if verification fails.
124122
if: failure() && steps.check-expiration.outcome == 'failure'
125-
uses: rtCamp/[email protected]
126123
env:
127124
SLACK_WEBHOOK: ${{ secrets.TEAM_TOOLING_CHANNEL_SLACK_WEBHOOK }}
128125
SLACK_MESSAGE: |
@@ -131,3 +128,4 @@ jobs:
131128
:warning::warning::warning::warning:
132129
SLACK_COLOR: danger
133130
MSG_MINIMAL: true
131+
uses: rtCamp/[email protected]

0 commit comments

Comments
 (0)