Feat/sync and backups#13
Merged
Merged
Conversation
…tation - Introduced new scripts for managing git synchronization: `git-check-sync.sh`, `git-force-sync-backup.sh`, `git-push-all.sh`, and `git-sync-from-origin.sh` to streamline backup and origin synchronization processes. - Updated `.gitconfig-aliases` with new git aliases for pushing and syncing branches. - Revised `CONTRIBUTING.md` to reflect updated links and improve clarity on contribution processes. - Removed obsolete files: `OPENSOURCE-CHECKLIST.md`, `RELEASE-AUTOMATION-SUMMARY.md`, `STASH-SYSTEM.md`, and `TESTING.md` to declutter the repository. - Enhanced documentation for better guidance on using the new features.
…adata, synthesis, character evolution, and memory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request primarily introduces repository restrictions to all major GitHub Actions workflows, ensuring that CI/CD jobs only run for the official
OnoSendae/vibe-devtoolsrepository. It also updates documentation links to use the correct GitHub organization casing and removes two documentation files that are now obsolete.Workflow restrictions and improvements:
if: github.repository == 'OnoSendae/vibe-devtools'to all jobs in.github/workflows/build.yml,.github/workflows/publish-cli.yml,.github/workflows/publish.yml,.github/workflows/release.yml, and.github/workflows/test.ymlto prevent workflows from running on forks or other repositories. Also updated conditional logic in.github/workflows/publish-packages.ymlfor bothpublish-basicandpublish-researchjobs to include this restriction. [1] [2] [3] [4] [5] [6] [7] [8]Documentation updates:
CONTRIBUTING.mdandREADME.mdto use the correct casing for the organization (OnoSendaeinstead ofonosendae) for consistency and to avoid potential issues with case-sensitive URLs. [1] [2] [3] [4]Cleanup of deprecated documentation:
RELEASE-AUTOMATION-SUMMARY.mdandapps/cli/STASH-SYSTEM.md, which are now outdated and superseded by newer documentation and workflows. [1] [2]New developer tooling:
.gitconfig-aliasesfor pushing to both origin and backup remotes, and for syncing backup with changes from origin, improving developer workflow for repository management.