forked from misskey-dev/misskey
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/develop' into vmimi-relay-timeline
- Loading branch information
Showing
70 changed files
with
1,588 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,6 +60,7 @@ jobs: | |
|
||
e2e: | ||
runs-on: ubuntu-latest | ||
if: false | ||
|
||
strategy: | ||
fail-fast: false | ||
|
Oops, something went wrong.