Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix message retrieval

+3 -1
+3 -1
.github/actions/discord-message/action.mjs
··· 27 27 }) 28 28 }) 29 29 30 - const releases = await Promise.allSettled(releasePromises) 30 + const releases = (await Promise.allSettled(releasePromises)) 31 + .map(x => x.status === 'fulfilled' && x.value.status === 200 ? x.value.data : undefined) 32 + .filter(Boolean) 31 33 32 34 // Construct message 33 35 const text = releases.map((release) => {