Skip to content

Commit

Permalink
Merge branch 'main' into star-history
Browse files Browse the repository at this point in the history
  • Loading branch information
lemorage authored May 1, 2024
2 parents 7e20360 + b144bc2 commit d2a4cdd
Show file tree
Hide file tree
Showing 31 changed files with 1,096 additions and 766 deletions.
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/http-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: HTTP Code Request
description: Request a http logo that's not here.
title: "[Request] "
labels: ["request", "enhancement", "http-code"]
assignees:
- SAWARATSUKI
body:
- type: markdown
attributes:
value: |
Please post it in the issues. We'll create it once confirmed.
Depending on individual schedules, we may not be able to respond immediately. It may take several days.
For reference on HTTP status codes, please consult the IANA registry [here](https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml)
- type: checkboxes
id: duplicate-check
attributes:
label: Check for duplicates
description: Check that the Issue has not been duplicated.
options:
- label: Checked
required: true

- type: input
id: status-code
attributes:
label: HTTP Status Code
description: Enter the specific HTTP status code.
placeholder: ex. 404 Not Found
validations:
required: true

- type: input
id: status-code-ja
attributes:
label: HTTP Status Code in Japanese
description: How to read the http code you wish to add in Japanese.
placeholder: 例) 404 見つかりません
validations:
required: true

- type: textarea
id: comment
attributes:
label: Comment
description: Add any additional information here. (Optional)
validations:
required: false
47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/request_zhHans.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: 请求logo
description: 请求一个没有被添加过的logo
title: "[Request] "
labels: ["request", "enhancement"]
assignees:
- SAWARATSUKI
body:
- type: markdown
attributes:
value: |
请提交issues。当请求被确认了之后就会开始设计制作logo。
由于个人时间安排等因素,制作logo可能需要几天时间。
- type: checkboxes
id: duplicate-check
attributes:
label: 检查重复
description: 确认此请求没有与其他的issues重合。
options:
- label: Checked
required: true

- type: input
id: service-name
attributes:
label: 服务名称
description: Logo的服务名称。
placeholder: 例如:GitHub
validations:
required: true

- type: input
id: service-name-ja
attributes:
label: 服务名称的日语读法
description: 如何用日语阅读您想要添加的服务的名称。
placeholder: 例如:ギットハブ
validations:
required: true

- type: textarea
id: comment
attributes:
label: 评论/补充
description: 请在这里添加相对应的图片。
validations:
required: false
30 changes: 30 additions & 0 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Auto Release

permissions:
contents: write

on:
push:
paths:
- "**.png"
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
submodules: true
- name: Generate Changelog
run: |-
echo "SHORT_SHA=$(echo $GITHUB_SHA | cut -c 1-7)" >> $GITHUB_ENV
python3 docs/scripts/generate-changelog.py
- if: ${{ hashFiles('changelog.md') != '' }}
uses: softprops/action-gh-release@v2
with:
target_commitish: ${{ github.sha }}
name: Release ${{ env.SHORT_SHA }}
tag_name: ${{ env.SHORT_SHA }}
body_path: changelog.md
6 changes: 4 additions & 2 deletions .github/workflows/update-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ jobs:
cache: pnpm

- uses: pdm-project/setup-pdm@v3
with:
cache: true

- name: Run Job
run: |-
# pdm install # no 3rd lib used
pdm install
pdm run generate
pnpm i
Expand All @@ -41,7 +43,7 @@ jobs:
git add .
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git commit -m "Update Image List"
git commit -m "docs: update image list [skip ci]"
git push
else
echo "No changes detected."
Expand Down
Binary file added 403Forbidden/Forbidden.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 418I'mateapot/418I'mateapot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 503ServiceUnavailable.png/ServiceUnavailable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Bluesky/Bluesky.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added HackClub/HackClub.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Julia/Julia.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Kernel Panic/KernelPanic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d2a4cdd

Please sign in to comment.