We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cea39da commit 1af48e6Copy full SHA for 1af48e6
.github/workflows/cran-status-check.yaml
@@ -33,13 +33,12 @@ jobs:
33
# Count open issues with CRAN-related labels
34
ISSUE_COUNT=$(gh issue list --label "cran-deadline" --state open --json number | jq length)
35
if [ $ISSUE_COUNT -eq 0 ]; then
36
- SHOULD_RUN="true"
+ echo "should-run=true" >> $GITHUB_OUTPUT
37
echo "✅ Will run CRAN check"
38
else
39
- SHOULD_RUN="false"
+ echo "should-run=false" >> $GITHUB_OUTPUT
40
echo "⏭️ Skipping CRAN check - existing issues found"
41
fi
42
- echo "should-run=$SHOULD_RUN" >> $GITHUB_OUTPUT
43
44
- name: Fetch deadline for this package
45
if: steps.check-issues.outputs.should-run == 'true'
0 commit comments