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
32 changes: 32 additions & 0 deletions .gitconfig-aliases
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[alias]
push-all = "!f() { \
branch=${1:-$(git branch --show-current)}; \
echo '🔄 Git RAID Push - Sincronizando origin + backup'; \
echo '📍 Branch: '$branch; \
echo ''; \
echo '1️⃣ Pushing to origin...'; \
git push origin \"$branch\" && echo '✅ origin: Push successful' || { echo '❌ origin: Push failed'; exit 1; }; \
echo ''; \
echo '2️⃣ Pushing to backup...'; \
git push backup \"$branch\" && echo '✅ backup: Push successful' || { echo '⚠️ backup: Push failed (origin já foi atualizado)'; exit 1; }; \
echo ''; \
echo '🎉 Sincronização completa!'; \
echo ' origin: OnoSendae/vibes-ecosystem'; \
echo ' backup: OnoSendae/vibe-devtools-bkp'; \
}; f"

sync-backup = "!f() { \
branch=${1:-$(git branch --show-current)}; \
echo '🔄 Sincronizando backup com PRs/merges remotos'; \
echo '📍 Branch: '$branch; \
echo ''; \
echo '1️⃣ Pulling from origin...'; \
git pull origin \"$branch\" && echo '✅ Pull from origin successful' || { echo '❌ Pull from origin failed'; exit 1; }; \
echo ''; \
echo '2️⃣ Pushing to backup...'; \
git push backup \"$branch\" && echo '✅ backup atualizado com mudanças de origin' || { echo '❌ backup: Push failed'; exit 1; }; \
echo ''; \
echo '🎉 Backup sincronizado com origin!'; \
echo ' Mudanças remotas (PRs) agora estão no backup'; \
}; f"

1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
build:
if: github.repository == 'OnoSendae/vibe-devtools'
runs-on: ubuntu-latest

steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
publish-cli:
if: github.repository == 'OnoSendae/vibe-devtools'
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:

jobs:
publish-basic:
if: github.event.inputs.package == 'basic' || github.event.inputs.package == 'all' || startsWith(github.ref, 'refs/tags/packages/basic/')
if: (github.event.inputs.package == 'basic' || github.event.inputs.package == 'all' || startsWith(github.ref, 'refs/tags/packages/basic/')) && github.repository == 'OnoSendae/vibe-devtools'
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -44,7 +44,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

publish-research:
if: github.event.inputs.package == 'research' || github.event.inputs.package == 'all' || startsWith(github.ref, 'refs/tags/packages/research/')
if: (github.event.inputs.package == 'research' || github.event.inputs.package == 'all' || startsWith(github.ref, 'refs/tags/packages/research/')) && github.repository == 'OnoSendae/vibe-devtools'
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ on:

jobs:
publish:
if: github.repository == 'OnoSendae/vibe-devtools'
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ permissions:

jobs:
release:
if: github.repository == 'OnoSendae/vibe-devtools'
name: Release
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
test-cli:
if: github.repository == 'OnoSendae/vibe-devtools'
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -38,6 +39,7 @@ jobs:
node dist/index.js --help

test-packages:
if: github.repository == 'OnoSendae/vibe-devtools'
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ Existem várias formas de contribuir:

### 1. Reportar Bugs 🐛

Encontrou um bug? [Abra um issue](https://github.com/onosendae/vibe-devtools/issues/new?template=bug_report.md).
Encontrou um bug? [Abra um issue](https://github.com/OnoSendae/vibe-devtools/issues/new?template=bug_report.md).

### 2. Sugerir Features ✨

Tem uma ideia? [Abra uma discussion](https://github.com/onosendae/vibe-devtools/discussions) ou [crie um feature request](https://github.com/onosendae/vibe-devtools/issues/new?template=feature_request.md).
Tem uma ideia? [Abra uma discussion](https://github.com/OnoSendae/vibe-devtools/discussions) ou [crie um feature request](https://github.com/OnoSendae/vibe-devtools/issues/new?template=feature_request.md).

### 3. Melhorar Documentação 📚

Expand All @@ -60,13 +60,13 @@ A maior contribuição: **crie e compartilhe vibes customizados**!

### Antes de Reportar

- Verifique a [lista de issues](https://github.com/onosendae/vibe-devtools/issues) para ver se já foi reportado
- Verifique a [lista de issues](https://github.com/OnoSendae/vibe-devtools/issues) para ver se já foi reportado
- Tente reproduzir com a versão mais recente
- Colete informações de debug (versões, logs, screenshots)

### Como Reportar

Use o [template de bug report](https://github.com/onosendae/vibe-devtools/issues/new?template=bug_report.md).
Use o [template de bug report](https://github.com/OnoSendae/vibe-devtools/issues/new?template=bug_report.md).

**Informações essenciais**:
- Versão da CLI (`vdt --version`)
Expand Down Expand Up @@ -112,7 +112,7 @@ Error: EACCES: permission denied, mkdir '~/.vibes'

### Como Sugerir

Use o [template de feature request](https://github.com/onosendae/vibe-devtools/issues/new?template=feature_request.md).
Use o [template de feature request](https://github.com/OnoSendae/vibe-devtools/issues/new?template=feature_request.md).

**Estrutura boa**:
```markdown
Expand Down
Loading