Skip to content

Commit

Permalink
Merge branch 'refs/heads/develop' into vmimi-relay-timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
anatawa12 committed Apr 16, 2024
2 parents 390b53d + 5290dcf commit 4388f9f
Show file tree
Hide file tree
Showing 70 changed files with 1,588 additions and 184 deletions.
80 changes: 22 additions & 58 deletions .github/ISSUE_TEMPLATE/01_bug-report.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
name: 🐛 Bug Report
description: Create a report to help us improve
labels: ["⚠️bug?"]
name: ⚠️ バグ報告
description: 修正/改善のための報告
labels: ["⚠️Bug"]

body:
- type: markdown
attributes:
value: |
Thanks for reporting!
First, in order to avoid duplicate Issues, please search to see if the problem you found has already been reported.
Also, If you are NOT owner/admin of server, PLEASE DONT REPORT SERVER SPECIFIC ISSUES TO HERE! (e.g. feature XXX is not working in misskey.example) Please try with another misskey servers, and if your issue is only reproducible with specific server, contact your server's owner/admin first.
バグ報告を検討していただきありがとうございます!
重複を避けるために、同様の問題が既に報告されていないか[にりらみすきー部のIssue](https://github.com/niri-la/misskey.niri.la/issues)を確認してみてください。
また、にりらみすきー部で再現したバグのみを報告してください。
- type: textarea
attributes:
label: 💡 Summary
description: Tell us what the bug is
label: 💡 概要
description: どんなバグですか?
validations:
required: true

- type: textarea
attributes:
label: 🥰 Expected Behavior
description: Tell us what should happen
label: 🥰 想定される挙動
description: 本来どうあるべきですか?
validations:
required: true

- type: textarea
attributes:
label: 🤬 Actual Behavior
label: 🤬 実際の挙動
description: |
Tell us what happens instead of the expected behavior.
Please include errors from the developer console and/or server log files if you have access to them.
実際には何が起きていますか?
可能であれば、デベロッパーツールでのエラーメッセージなども載せてください。
validations:
required: true

- type: textarea
attributes:
label: 📝 Steps to Reproduce
label: 📝 再現手順
placeholder: |
1.
2.
Expand All @@ -45,53 +45,17 @@ body:

- type: textarea
attributes:
label: 💻 Frontend Environment
label: 💻 お使いの環境
description: |
Tell us where on the platform it happens
DO NOT WRITE "latest". Please provide the specific version.
どんな環境で問題が起きましたか?
"最新"のような書き方はせず、具体的なバージョンを教えてください。
Examples:
* Model and OS of the device(s): MacBook Pro (14inch, 2021), macOS Ventura 13.4
* Browser: Chrome 113.0.5672.126
* Server URL: misskey.io
* Misskey: 13.x.x
例:
* 機種とOS: MacBook Pro (14inch, 2021), macOS Ventura 13.4
* ブラウザ: Chrome 113.0.5672.126
value: |
* Model and OS of the device(s):
* Browser:
* Server URL:
* Misskey:
* 機種とOS:
* ブラウザ:
render: markdown
validations:
required: false

- type: textarea
attributes:
label: 🛰 Backend Environment (for server admin)
description: |
Tell us where on the platform it happens
DO NOT WRITE "latest". Please provide the specific version.
If you are using a managed service, put that after the version.
Examples:
* Installation Method or Hosting Service: docker compose, k8s/docker, systemd, "Misskey install shell script", development environment
* Misskey: 13.x.x
* Node: 20.x.x
* PostgreSQL: 15.x.x
* Redis: 7.x.x
* OS and Architecture: Ubuntu 22.04.2 LTS aarch64
value: |
* Installation Method or Hosting Service:
* Misskey:
* Node:
* PostgreSQL:
* Redis:
* OS and Architecture:
render: markdown
validations:
required: false

- type: checkboxes
attributes:
label: Do you want to address this bug yourself?
options:
- label: Yes, I will patch the bug myself and send a pull request
17 changes: 6 additions & 11 deletions .github/ISSUE_TEMPLATE/02_feature-request.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
name: Feature Request
description: Suggest an idea for this project
name: 新機能の要望
description: 新しい機能の提案
labels: ["✨Feature"]

body:
- type: textarea
attributes:
label: Summary
description: Tell us what the suggestion is
label: 概要
description: どんな提案ですか?
validations:
required: true
- type: textarea
attributes:
label: Purpose
description: Describe the specific problem or need you think this feature will solve, and who it will help.
label: 目的
description: その機能の追加によって、どんな問題やニーズが解決されそうですか? また、それはどんな人に役立ちそうですか?
validations:
required: true
- type: checkboxes
attributes:
label: Do you want to implement this feature yourself?
options:
- label: Yes, I will implement this by myself and send a pull request
4 changes: 0 additions & 4 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/check-misskey-js-autogen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/[email protected]
with:
submodules: true
ref: ${{ github.event.pull_request.head.sha }}
ref: refs/pull/${{ github.event.number }}/merge

- name: setup pnpm
uses: pnpm/action-setup@v3
Expand Down
50 changes: 50 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Build and Push Image (Docker Buildx; GitHub Actions)

on:
push:
tags:
- 'v*'

env:
DOCKER_REGISTRY_NAME: ghcr.io
DOCKER_IMAGE_NAME: ${{ github.repository }}

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v1

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Login to Docker hub
uses: docker/login-action@v1
with:
registry: ${{ env.DOCKER_REGISTRY_NAME }}
username: ${{ github.repository_owner }}
password: ${{ github.token }} # github.token

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.DOCKER_REGISTRY_NAME }}/${{ env.DOCKER_IMAGE_NAME }}

- name: Build & Push
uses: docker/build-push-action@v2
env:
DOCKER_BUILDKIT: 1
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: ${{ env.DOCKER_REGISTRY_NAME }}/${{ env.DOCKER_IMAGE_NAME }}:latest
build-args: BUILDKIT_INLINE_CACHE=1
1 change: 1 addition & 0 deletions .github/workflows/test-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:

e2e:
runs-on: ubuntu-latest
if: false

strategy:
fail-fast: false
Expand Down
Loading

0 comments on commit 4388f9f

Please sign in to comment.