Compare commits
No commits in common. "44e0667999c74f2ce3548845bf88d7b639d88461" and "ebe77efe7440daffaba8273f3b46f6298dab28d8" have entirely different histories.
44e0667999
...
ebe77efe74
|
|
@ -1,28 +0,0 @@
|
||||||
name: Mirror to Gitea
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- master
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
mirror:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Mirror to Gitea
|
|
||||||
env:
|
|
||||||
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
||||||
GITEA_USERNAME: ${{ secrets.GITEA_USERNAME }}
|
|
||||||
run: |
|
|
||||||
REPO_NAME=$(basename $GITHUB_REPOSITORY)
|
|
||||||
git remote add gitea https://$GITEA_USERNAME:$GITEA_TOKEN@gitea.jeffemmett.com/jeffemmett/$REPO_NAME.git || true
|
|
||||||
git push gitea --all --force
|
|
||||||
git push gitea --tags --force
|
|
||||||
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
project_name: "Polycentric Web"
|
|
||||||
default_status: "To Do"
|
|
||||||
statuses: ["To Do", "In Progress", "Done"]
|
|
||||||
labels: []
|
|
||||||
milestones: []
|
|
||||||
date_format: yyyy-mm-dd
|
|
||||||
max_column_width: 20
|
|
||||||
auto_open_browser: true
|
|
||||||
default_port: 6420
|
|
||||||
remote_operations: true
|
|
||||||
auto_commit: false
|
|
||||||
zero_padded_ids: 3
|
|
||||||
bypass_git_hooks: false
|
|
||||||
check_active_branches: true
|
|
||||||
active_branch_days: 60
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
---
|
|
||||||
id: task-001
|
|
||||||
title: V4 Upgrade
|
|
||||||
status: In Progress
|
|
||||||
assignee: []
|
|
||||||
created_date: '2025-12-03'
|
|
||||||
labels: [upgrade, major-version]
|
|
||||||
priority: high
|
|
||||||
branch: v4
|
|
||||||
---
|
|
||||||
|
|
||||||
## Description
|
|
||||||
Upgrade to Polycentric v4 with new features and improvements.
|
|
||||||
|
|
||||||
## Branch Info
|
|
||||||
- **Branch**: `v4`
|
|
||||||
|
|
||||||
## Acceptance Criteria
|
|
||||||
- [ ] Migrate to v4 API
|
|
||||||
- [ ] Update dependencies
|
|
||||||
- [ ] Test all functionality
|
|
||||||
Loading…
Reference in New Issue