You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for i in "${ADDR[@]}"; #accessing each element of array
58
-
do
59
-
echo "$i"
60
-
if [[ $i == ./doc* ]]
61
-
then
62
-
doc=doc+1
63
-
elif [[ $i == ./lib* ]]
64
-
then
65
-
source=source+1
66
-
fi
67
-
done
68
-
Red='0;31'
69
-
Green='0;32'
70
-
NoColor='\033[0m'
71
-
if [[ $doc == 0 ]] && [[ $source == 0 ]]
72
-
then
73
-
echo "🚀${Green} Hurrah! no source editted${NoColor}"; exit 0;
74
-
fi
75
-
if [[ $doc == 0 ]] && [[ $source -ge 0 ]]
76
-
then
77
-
echo "🔍${Red} DOCUMENTATION NOT UPDATED: Files with missing or not updated documentation found please consider fixing to get the PR approved${NoColor}";exit 1;
78
-
fi
79
-
echo "🚀 ${Green}Hurrah! documentation was updated in all modified/added files${NoColor}"; exit 0;
Copy file name to clipboardexpand all lines: .github/workflows/stale.yml
+6-6
Original file line number
Diff line number
Diff line change
@@ -25,19 +25,19 @@ jobs:
25
25
runs-on: ubuntu-latest
26
26
27
27
steps:
28
-
- uses: actions/stale@v4.1.0
28
+
- uses: actions/stale@v7
29
29
with:
30
30
repo-token: ${{ secrets.GITHUB_TOKEN }}
31
-
stale-issue-message: 'This issue did not get any activity in the past 60 days and will be closed in 365 days if no update occurs. Please check if the develop branch has fixed it and report again or close the issue.'
32
-
stale-pr-message: 'This pull request did not get any activity in the past 60 days and will be closed in 365 days if no update occurs. Please verify it has no conflicts with the develop branch and rebase if needed. Mention it now if you need help or give permission to other people to finish your work.'
31
+
stale-issue-message: 'This issue did not get any activity in the past 14 days and will be closed in 365 days if no update occurs. Please check if the develop branch has fixed it and report again or close the issue.'
32
+
stale-pr-message: 'This pull request did not get any activity in the past 14 days and will be closed in 365 days if no update occurs. Please verify it has no conflicts with the develop branch and rebase if needed. Mention it now if you need help or give permission to other people to finish your work.'
33
33
close-issue-message: 'This issue did not get any activity in the past 365 days and thus has been closed. Please check if the newest release or develop branch has it fixed. Please, create a new issue if the issue is not fixed.'
34
34
close-pr-message: 'This pull request did not get any activity in the past 365 days and thus has been closed.'
0 commit comments