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 a51f9c0 commit 1b35c78Copy full SHA for 1b35c78
.github/workflows/Manual.yml
@@ -17,13 +17,18 @@ jobs:
17
- name: Fetch CSV file
18
run: |
19
curl -o broken-features.csv https://raw.githubusercontent.com/refined-github/yolo/main/broken-features.csv
20
+ cat broken-features.csv
21
22
- name: Was it hotfixed?
23
24
+ grep -e ",6350," broken-features.csv
25
if [ grep -e ",6350," broken-features.csv ]; then
26
TODAY=$(npx utc-version --short)
- echo "WAS_HOTFIXED=true" >> $GITHUB_ENV
27
+ echo "WAS_HOTFIXED=$TODAY" >> $GITHUB_ENV
28
+ echo "WAS_HOTFIXED=$TODAY"
29
fi
30
+
31
32
33
- name: Comment on Issue Closure
34
if: env.WAS_HOTFIXED
0 commit comments