Skip to content

修复屏幕过窄时无法按到评论发送键,支持评论区点击头像跳转到该用户主页 #322

修复屏幕过窄时无法按到评论发送键,支持评论区点击头像跳转到该用户主页

修复屏幕过窄时无法按到评论发送键,支持评论区点击头像跳转到该用户主页 #322

Workflow file for this run

name: Sync Develop to Production Branch
on:
push:
branches:
- develop
jobs:
sync-branches:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Merge develop -> production
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
git config pull.rebase false
git checkout production
git pull origin develop
git push origin production