summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatTheMav <PatTheMav@users.noreply.github.com>2024-02-26 17:13:35 +0100
committerRyan Foster <ryan@obsproject.com>2024-02-26 17:31:22 -0500
commit193019d214ed655908b81a9ce01d9ae48030898a (patch)
tree438870f3e42ff34287972b347ed0d37613a53db5
parent745f87f21ff6a1fca2d2dbf909b93a752736eab7 (diff)
CI: Fix scheduled language file check running on same commit hash
When a prior scheduled nightly run is detected with the identical commit hash, then the entire language file check should be skipped. This adds the missing condition to skip the check for changed files removing the unnecessary warning contained in the workflow results.
-rw-r--r--.github/workflows/scheduled.yaml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/scheduled.yaml b/.github/workflows/scheduled.yaml
index 97155413f..372806da5 100644
--- a/.github/workflows/scheduled.yaml
+++ b/.github/workflows/scheduled.yaml
@@ -116,6 +116,7 @@ jobs:
fi
- name: Check for Changed Files ✅
+ if: fromJSON(steps.nightly-checks.outputs.passed)
uses: ./.github/actions/check-changes
id: checks
with: