1
0
mirror of synced 2026-01-31 09:01:33 -05:00

Merge pull request #13068 from github/repo-sync

repo sync
This commit is contained in:
Octomerger Bot
2021-12-16 11:28:41 -06:00
committed by GitHub
2 changed files with 1 additions and 28 deletions

View File

@@ -11,7 +11,7 @@ name: Create translation Batch Pull Request
on:
workflow_dispatch:
schedule:
- cron: '25 */6 * * *' # Every six hours
- cron: '02 17 * * *' # Once a day at 17:02 UTC / 9:02 PST
permissions:
contents: write

View File

@@ -20,33 +20,6 @@ export const GuideCard = ({ guide }: Props) => {
/>
<footer className="d-flex">
<div className="mr-1">
{authors.length === 1 ? (
<img
className="avatar avatar-2 circle mr-1"
src={`https://github.com/${authors[0]}.png`}
alt={`@${authors[0]}`}
/>
) : (
<div className="AvatarStack AvatarStack--three-plus">
<div
className="AvatarStack-body tooltipped tooltipped-se tooltipped-align-left-1"
aria-label={authorString}
>
{authors.map((author) => {
return (
<img
className="avatar circle"
alt={`@${author}`}
src={`https://github.com/${author}.png`}
/>
)
})}
</div>
</div>
)}
</div>
<div>{authorString}</div>
</footer>
</a>