Skip to content

Commit

Permalink
[CI] Filter runs of OpenSSL Test workflow (#15459)
Browse files Browse the repository at this point in the history
This workflow now only triggers on changes to paths that are directly
related to OpenSSL.
It also runs on a nightly schedule and can be triggered manually.
  • Loading branch information
straight-shoota authored Feb 13, 2025
1 parent 63641f6 commit ca64539
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/openssl.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
name: OpenSSL CI

on: [push, pull_request]
on:
push:
paths:
- 'src/openssl/**'
- 'spec/std/digest/**'
- 'spec/std/openssl/**'
- '.github/workflows/openssl.yml'
pull_request:
paths:
- 'src/openssl/**'
- 'spec/std/digest/**'
- 'spec/std/openssl/**'
- '.github/workflows/openssl.yml'
schedule:
- cron: '0 3 * * *'
workflow_dispatch:

permissions: {}

Expand Down

0 comments on commit ca64539

Please sign in to comment.