Skip to content

Commit fc899db

Browse files
committed
Add a schedule trigger to run every sunday at 3:37am
1 parent 245542b commit fc899db

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

perl-module-ubuntu.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# brian's standard GitHub Actions Ubuntu config for Perl 5 modules
2-
# version 20240909.001
2+
# version 20240923.001
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -48,7 +48,9 @@ on:
4848
- 'LICENSE'
4949
- 'README.pod'
5050
pull_request:
51-
51+
# weekly build on the master branch just to see what CPAN is doing
52+
schedule:
53+
- cron: "37 3 * * 0"
5254
jobs:
5355
perl:
5456
environment: automated_testing
@@ -92,7 +94,9 @@ jobs:
9294
echo "PERL_LWP_SSL_VERIFY_HOSTNAME=0" >> $GITHUB_ENV
9395
# HTML::Tagset bumped its minimum version to v5.10 for no good reason
9496
# but this is a prereq to LWP, which runs on v5.8. To get around this,
95-
# download the tarball and fix it for v5.8.
97+
# download the tarball and fix it for v5.8. Install it before we try
98+
# to install things that depend on it. More recent versions will
99+
# install it normally.
96100
# 1. remove the META files which have references to v5.10 and ignore
97101
# the warnings
98102
# 2. fix Makefile.PL to remove two references to v5.10

0 commit comments

Comments
 (0)