Skip to content

Commit 1b35c78

Browse files
authored
Update Manual.yml
1 parent a51f9c0 commit 1b35c78

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/Manual.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,18 @@ jobs:
1717
- name: Fetch CSV file
1818
run: |
1919
curl -o broken-features.csv https://raw.githubusercontent.com/refined-github/yolo/main/broken-features.csv
20+
cat broken-features.csv
2021
2122
- name: Was it hotfixed?
2223
run: |
24+
grep -e ",6350," broken-features.csv
2325
if [ grep -e ",6350," broken-features.csv ]; then
2426
TODAY=$(npx utc-version --short)
25-
echo "WAS_HOTFIXED=true" >> $GITHUB_ENV
27+
echo "WAS_HOTFIXED=$TODAY" >> $GITHUB_ENV
28+
echo "WAS_HOTFIXED=$TODAY"
2629
fi
30+
31+
echo "WAS_HOTFIXED=$TODAY" >> $GITHUB_ENV
2732
2833
- name: Comment on Issue Closure
2934
if: env.WAS_HOTFIXED

0 commit comments

Comments
 (0)