Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
commitish: main

categories:
- title: '🚀 Feat'
labels:
- '💡 Feature'
- '🎨 Style'
- '🔨 Refactor'
- title: '🐛 Fix'
labels:
- '💥 Fix'
- '🚨 HOTFIX'
- title: '🧰 Init'
labels:
- '🚀 Deploy'
- '🧹 Chore'
- '🤖 CI/CD'

change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&'

version-resolver:
major:
labels:
- '🚀 Major'
minor:
labels:
- '🛥️ Minor'
patch:
labels:
- '🚘 Patch'
default: 🚘 Patch

template: |
## ✨ Changes
$CHANGES
21 changes: 21 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release Drafter

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
draft-release:
runs-on: ubuntu-latest
steps:
- name: Run Release Drafter
uses: release-drafter/release-drafter@v6
with:
config-name: release-drafter.yml
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_DRAFTER_GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect } from 'react';
import { useLocation } from 'react-router-dom';
import { useLocation } from 'react-router';

import { useSocialLogin } from '@widgets/login-fallback/hooks/use-social-login';

Expand Down
Loading