Mirror of
0
fork

Configure Feed

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

Update GitHub template files

+11 -1
+1 -1
.github/workflows/deployment.yaml
··· 176 176 id: create_release 177 177 with: 178 178 tag: ${{ env.IMAGE_NAME }}-docs@${{ needs.image-tag.outputs.IMAGE_TAG }} 179 - makeLatest: true 179 + makeLatest: false 180 180 body: ${{ steps.extract-changelog.outputs.markdown }} 181 181 skipIfReleaseExists: true 182 182
+3
.gitignore
··· 83 83 .cache 84 84 .parcel-cache 85 85 86 + # Astro 87 + .astro 88 + 86 89 # Next.js build output 87 90 .next 88 91 out
+7
.prettierignore
··· 35 35 # OS generated files 36 36 .DS_Store 37 37 Thumbs.db 38 + 39 + # Markdown and MDX files 40 + *.md 41 + *.mdx 42 + 43 + # Changelog 44 + .changeset