Skip to content

Commit

Permalink
feat: OAuth2認可実装(WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
kackyt committed Feb 8, 2024
1 parent 162e806 commit 05c59af
Show file tree
Hide file tree
Showing 6 changed files with 144 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
language: "jp"
early_access: false
reviews:
request_changes_workflow: false
high_level_summary: true
poem: true
review_status: true
collapse_walkthrough: false
path_filters:
- "!**/.toml"
- "!**/.yml"
path_instructions:
- path: "**/*.py"
instructions: |
あなたは @coderabbitai(別名 github-actions[bot])で、OpenAIによって訓練された言語モデルです。
あなたの目的は、非常に経験豊富なソフトウェアエンジニアとして機能し、コードの一部を徹底的にレビューし、
以下のようなキーエリアを改善するためのコードスニペットを提案することです:
- ロジック
- セキュリティ
- パフォーマンス
- データ競合
- 一貫性
- エラー処理
- 保守性
- モジュール性
- 複雑性
- 最適化
- ベストプラクティス: DRY, SOLID, KISS
些細なコードスタイルの問題や、コメント・ドキュメントの欠落についてはコメントしないでください。
重要な問題を特定し、解決して全体的なコード品質を向上させることを目指してくださいが、細かい問題は意図的に無視してください。
auto_review:
enabled: true
ignore_title_keywords:
- "WIP"
- "DO NOT MERGE"
drafts: false
base_branches:
- "develop"
- "feature/*"
chat:
auto_reply: true
14 changes: 14 additions & 0 deletions .github/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
feature:
- 'feature/*'
- 'feat/*'
refactor:
- 'refactor/*'
bug:
- 'fix/*'
minor:
- 'release/*'
- 'feature/*'
- 'feat/*'
- 'refactor/*'
chore:
- 'chore/*'
31 changes: 31 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name-template: '$RESOLVED_VERSION'
tag-template: '$RESOLVED_VERSION'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
label: 'chore'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver:
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'
default: minor
template: |
## Changes
$CHANGES
15 changes: 15 additions & 0 deletions .github/workflows/pr_label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: pull request label
on:
pull_request:
types: [opened]
permissions:
pull-requests: write
contents: read
jobs:
pr-labeler:
runs-on: ubuntu-latest
steps:
- uses: TimonVS/pr-labeler-action@v4
name: make label
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: make release
on:
pull_request:
types:
- closed
branches:
- main
push:
tags:
- '*'
workflow_dispatch: {}
env:
cache-unique-key: mahjong-rust-ai
permissions:
id-token: write
contents: read
jobs:
release:
permissions:
# write permission is required to create a github release
contents: write
# write permission is required for autolabeler
# otherwise, read permission is required at least
pull-requests: read
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.merged == true }}
steps:
- name: Create Release
uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
publish: true
9 changes: 9 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,24 @@ import { RequireAuth } from './components/atoms/RequireAuth'
import { SignIn } from './pages/signin'
import { OpenAPI } from './apis/analysis'
import { StatisticsIndex } from './pages/statistics'
import { useAuth0 } from '@auth0/auth0-react'
import { useEffect } from 'react'
import { fetchAPIToken } from './hooks/common/useToken'

const SentryRoutes = Sentry.withSentryReactRouterV6Routing(Routes)

function App() {
const { isLoading, isAuthenticated, getAccessTokenSilently } = useAuth0()
const theme = createTheme({
palette: {
mode: 'light',
},
})
useEffect(() => {
if (!isLoading && isAuthenticated) {
fetchAPIToken(getAccessTokenSilently)
}
}, [isAuthenticated, getAccessTokenSilently, isLoading])
OpenAPI.BASE = import.meta.env.VITE_API_BASE

return (
Expand Down

0 comments on commit 05c59af

Please sign in to comment.