From 9d21996405b47bac8c74608c20f428cef13fcf75 Mon Sep 17 00:00:00 2001 From: Ryan May Date: Fri, 27 Sep 2024 10:49:15 -0600 Subject: [PATCH 1/2] MNT: Update redirect config for conda docs --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index f2328251fae..37f8c5fe97b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -458,7 +458,7 @@ # Dictionary of URL redirects allowed linkcheck_allowed_redirects = { r'https://pint\.readthedocs\.io': r'https://pint\.readthedocs\.io/en/stable/', - r'https://conda.io/docs/': r'https://conda.io/projects/conda/en/latest/', + r'https://conda.io/docs/': r'https://docs.conda.io/projects/conda/en/latest/', r'https://github.com/Unidata/MetPy/issues/new/choose': r'https://github.com/login.*choose', r'https://doi.org/.*': r'https://.*', r'https://gitter.im/Unidata/MetPy': r'https://app.gitter.im/.*MetPy.*', From 30f2012174d3b6d497ceda200f4c394a919eaf35 Mon Sep 17 00:00:00 2001 From: Ryan May Date: Fri, 27 Sep 2024 10:50:06 -0600 Subject: [PATCH 2/2] CI: Adjust "nightly" run frequency Drop to once per week, running early in the work week, to try to minimize failures due to temporary conditions. --- .github/workflows/nightly-builds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly-builds.yml b/.github/workflows/nightly-builds.yml index 28de074a5dc..f072fca98c8 100644 --- a/.github/workflows/nightly-builds.yml +++ b/.github/workflows/nightly-builds.yml @@ -3,7 +3,7 @@ name: Nightly Checks on: schedule: # Runs at 09Z (3am MDT) - - cron: "0 9 * * *" + - cron: "0 9 * * 2" # Allow a manual run workflow_dispatch: