Skip to content

Commit cac9438

Browse files
fix: bot-sync-status only runs with in-progress label, add letsplot
1 parent cf5f65b commit cac9438

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/bot-sync-status.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ jobs:
4646
fi
4747
fi
4848
49-
# Check if this is the main issue with plot-request label
50-
if echo "$LABELS" | grep -q "plot-request"; then
49+
# Check if this is the main issue with plot-request AND in-progress label
50+
# (only sync after generation has started, not on initial plot-request)
51+
if echo "$LABELS" | grep -q "plot-request" && echo "$LABELS" | grep -q "in-progress"; then
5152
echo "parent_number=$ISSUE_NUM" >> $GITHUB_OUTPUT
5253
echo "should_sync=true" >> $GITHUB_OUTPUT
5354
exit 0
@@ -124,7 +125,7 @@ jobs:
124125
run: |
125126
126127
# Define all libraries
127-
LIBRARIES="matplotlib seaborn plotly bokeh altair plotnine pygal highcharts"
128+
LIBRARIES="matplotlib seaborn plotly bokeh altair plotnine pygal highcharts letsplot"
128129
129130
# Start building the table
130131
cat > /tmp/status_table.md << 'TABLEEOF'

0 commit comments

Comments
 (0)