Skip to content

Commit 289f07f

Browse files
committed
Run "Check Certificates" workflow on modification
This will facilitate testing and review of modifications to the workflow. Because the workflow requires access to repository secrets, and so will fail whenever triggered by an event from a fork, a conditional is added to make it only run when the modifications are made within the `arduino/arduino-ide` repository.
1 parent b9c777a commit 289f07f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/check-certificates.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Check Certificates
22

33
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
44
on:
5+
push:
6+
paths:
7+
- ".github/workflows/check-certificates.ya?ml"
8+
pull_request:
9+
paths:
10+
- ".github/workflows/check-certificates.ya?ml"
511
schedule:
612
# run every 10 hours
713
- cron: "0 */10 * * *"

0 commit comments

Comments
 (0)