mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
This commit is contained in:
		
						commit
						cc57fc041a
					
				
					 4 changed files with 22 additions and 4 deletions
				
			
		
							
								
								
									
										6
									
								
								.github/workflows/storybook.yml
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								.github/workflows/storybook.yml
									
										
									
									
										vendored
									
									
								
							| 
						 | 
					@ -44,7 +44,11 @@ jobs:
 | 
				
			||||||
      if: github.ref != 'refs/heads/master'
 | 
					      if: github.ref != 'refs/heads/master'
 | 
				
			||||||
      id: chromatic
 | 
					      id: chromatic
 | 
				
			||||||
      run: |
 | 
					      run: |
 | 
				
			||||||
        CHROMATIC_PARAMETER="$(node packages/frontend/.storybook/changes.js $(git diff-tree --no-commit-id --name-only -r ${{ github.event.before }} HEAD | xargs))"
 | 
					        DIFF="${{ github.event.before }} HEAD"
 | 
				
			||||||
 | 
					        if [ "$DIFF" = "0000000000000000000000000000000000000000 HEAD" ]; then
 | 
				
			||||||
 | 
					          DIFF="HEAD"
 | 
				
			||||||
 | 
					        fi
 | 
				
			||||||
 | 
					        CHROMATIC_PARAMETER="$(node packages/frontend/.storybook/changes.js $(git diff-tree --no-commit-id --name-only -r $(echo "$DIFF") | xargs))"
 | 
				
			||||||
        if [ "$CHROMATIC_PARAMETER" = " --skip" ]; then
 | 
					        if [ "$CHROMATIC_PARAMETER" = " --skip" ]; then
 | 
				
			||||||
          echo "skip=true" >> $GITHUB_OUTPUT
 | 
					          echo "skip=true" >> $GITHUB_OUTPUT
 | 
				
			||||||
        fi
 | 
					        fi
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										12
									
								
								README.md
									
										
									
									
									
								
							
							
						
						
									
										12
									
								
								README.md
									
										
									
									
									
								
							| 
						 | 
					@ -61,10 +61,18 @@ Misskey Documentation can be found at [Misskey Hub](https://misskey-hub.net/), s
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Thanks
 | 
					## Thanks
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<a href="https://www.chromatic.com/"><img src="https://user-images.githubusercontent.com/321738/84662277-e3db4f80-af1b-11ea-88f5-91d67a5e59f6.png" width="153" height="30" alt="Chromatic" /></a>
 | 
					<a href="https://www.chromatic.com/"><img src="https://user-images.githubusercontent.com/321738/84662277-e3db4f80-af1b-11ea-88f5-91d67a5e59f6.png" height="30" alt="Chromatic" /></a>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Thanks to [Chromatic](https://www.chromatic.com/) for providing the visual testing platform that helps us review UI changes and catch visual regressions.
 | 
					Thanks to [Chromatic](https://www.chromatic.com/) for providing the visual testing platform that helps us review UI changes and catch visual regressions.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<a href="https://hub.docker.com/"><img src="https://user-images.githubusercontent.com/20679825/230148221-f8e73a32-a49b-47c3-9029-9a15c3824f92.png" width="117" height="30" alt="Docker" /></a>
 | 
					<a href="https://about.codecov.io/for/open-source/"><img src="https://about.codecov.io/wp-content/themes/codecov/assets/brand/sentry-cobranding/logos/codecov-by-sentry-logo.svg" height="30" alt="Codecov" /></a>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Thanks to [Codecov](https://about.codecov.io/for/open-source/) for providing the code coverage platform that helps us improve our test coverage.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<a href="https://crowdin.com/"><img src="https://user-images.githubusercontent.com/20679825/230709597-1299a011-171a-4294-a91e-355a9b37c672.svg" height="30" alt="Crowdin" /></a>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Thanks to [Crowdin](https://crowdin.com/) for providing the localization platform that helps us translate Misskey into many languages.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<a href="https://hub.docker.com/"><img src="https://user-images.githubusercontent.com/20679825/230148221-f8e73a32-a49b-47c3-9029-9a15c3824f92.png" height="30" alt="Docker" /></a>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Thanks to [Docker](https://hub.docker.com/) for providing the container platform that helps us run Misskey in production.
 | 
					Thanks to [Docker](https://hub.docker.com/) for providing the container platform that helps us run Misskey in production.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ version: "3"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
services:
 | 
					services:
 | 
				
			||||||
  redistest:
 | 
					  redistest:
 | 
				
			||||||
    image: redis:6
 | 
					    image: redis:7
 | 
				
			||||||
    ports:
 | 
					    ports:
 | 
				
			||||||
      - "127.0.0.1:56312:6379"
 | 
					      - "127.0.0.1:56312:6379"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,4 +1,10 @@
 | 
				
			||||||
<link rel="stylesheet" href="https://unpkg.com/@tabler/icons-webfont@2.12.0/tabler-icons.min.css">
 | 
					<link rel="stylesheet" href="https://unpkg.com/@tabler/icons-webfont@2.12.0/tabler-icons.min.css">
 | 
				
			||||||
 | 
					<link rel="stylesheet" href="https://unpkg.com/@fontsource/m-plus-rounded-1c/index.css">
 | 
				
			||||||
 | 
					<style>
 | 
				
			||||||
 | 
						html {
 | 
				
			||||||
 | 
							font-family: 'Hiragino Maru Gothic Pro', 'BIZ UDGothic', Roboto, HelveticaNeue, Arial, 'M PLUS Rounded 1c', sans-serif;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					</style>
 | 
				
			||||||
<script>
 | 
					<script>
 | 
				
			||||||
  window.global = window;
 | 
					  window.global = window;
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue