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 8188578 commit e55eb5fCopy full SHA for e55eb5f
.github/workflows/main.yml
@@ -62,12 +62,16 @@ jobs:
62
63
# Stage the Git index change of the auto-generated files
64
# Note that followers.json+repositories.json+todos.json are artifacts
65
- git add readme.md prs.md issues.md identical-forks.md
+ git add readme.md prs.md issues.md
66
git add by-name-asc.md by-name-desc.md
67
git add by-pushed_at-asc.md by-pushed_at-desc.md
68
git add by-size-asc.md by-size-desc.md
69
git add by-updated_at-asc.md by-updated_at-desc.md
70
71
+ if [ -e identical-forks.md ]; then
72
+ git add identical-forks.md
73
+ fi
74
+
75
# Bail if there are no changes to commit and hence no GitHub Pages to build
76
if git diff-index --quiet HEAD --; then
77
exit
0 commit comments