Skip to content

优化弹幕列表逻辑,弹幕数显示为实时数据,点击设置等操作不会清空弹幕列表,支持点击弹幕表头可排序 #323

优化弹幕列表逻辑,弹幕数显示为实时数据,点击设置等操作不会清空弹幕列表,支持点击弹幕表头可排序

优化弹幕列表逻辑,弹幕数显示为实时数据,点击设置等操作不会清空弹幕列表,支持点击弹幕表头可排序 #323

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 "actions@github.com"
git config --local user.name "Github Actions"
git config pull.rebase false
git checkout production
git pull origin develop
git push origin production