Skip to content

Commit 4de9758

Browse files
committed
*fixed branches on workflows
1 parent ff2f3e9 commit 4de9758

8 files changed

Lines changed: 15 additions & 16 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy Documentation
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ master ]
66
paths: [ 'docs/**' ]
77
workflow_dispatch:
88

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Test
22

33
on:
44
push:
5-
branches: [ main, develop ]
5+
branches: [ master, develop ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ master ]
88

99
jobs:
1010
test:

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
**🚀 The ultimate CLI tool for Kubernetes cluster management, analysis, and lifecycle control**
66

77
[![Release](https://img.shields.io/github/v/release/graz-dev/kalco)](https://github.com/graz-dev/kalco/releases)
8-
[![Go Report Card](https://goreportcard.com/badge/github.com/graz-dev/kalco)](https://goreportcard.com/report/github.com/graz-dev/kalco)
98
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
109
[![Documentation](https://img.shields.io/badge/docs-available-brightgreen)](https://graz-dev.github.io/kalco)
1110

@@ -108,7 +107,7 @@ Kalco transforms your Kubernetes cluster management experience by providing a **
108107
<td>
109108

110109
```bash
111-
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.sh | bash
110+
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/master/scripts/install.sh | bash
112111
```
113112

114113
</td>
@@ -118,7 +117,7 @@ curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install
118117
<td>
119118

120119
```powershell
121-
iwr -useb https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.ps1 | iex
120+
iwr -useb https://raw.githubusercontent.com/graz-dev/kalco/master/scripts/install.ps1 | iex
122121
```
123122

124123
</td>
@@ -137,12 +136,12 @@ iwr -useb https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.
137136

138137
**Linux/macOS:**
139138
```bash
140-
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.sh | bash
139+
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/master/scripts/install.sh | bash
141140
```
142141

143142
**Windows (PowerShell):**
144143
```powershell
145-
iwr -useb https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.ps1 | iex
144+
iwr -useb https://raw.githubusercontent.com/graz-dev/kalco/master/scripts/install.ps1 | iex
146145
```
147146

148147
#### Package Managers

RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ After a release is published, users can install kalco using:
7373
### Quick Install Scripts
7474
```bash
7575
# Linux/macOS
76-
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.sh | bash
76+
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/master/scripts/install.sh | bash
7777

7878
# Windows PowerShell
79-
iwr -useb https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.ps1 | iex
79+
iwr -useb https://raw.githubusercontent.com/graz-dev/kalco/master/scripts/install.ps1 | iex
8080
```
8181

8282
### Package Managers

docs/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ We welcome contributions to Kalco! This guide will help you get started with con
6262
```bash
6363
# Sync with upstream
6464
git fetch upstream
65-
git checkout main
66-
git merge upstream/main
65+
git checkout master
66+
git merge upstream/master
6767

6868
# Create feature branch
6969
git checkout -b feature/your-feature-name

docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ This guide will help you get up and running with Kalco in minutes.
1414

1515
**Linux/macOS:**
1616
```bash
17-
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.sh | bash
17+
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/master/scripts/install.sh | bash
1818
```
1919

2020
**Windows (PowerShell):**
2121
```powershell
22-
iwr -useb https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.ps1 | iex
22+
iwr -useb https://raw.githubusercontent.com/graz-dev/kalco/master/scripts/install.ps1 | iex
2323
```
2424

2525
### Package Managers

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Kalco is a powerful CLI tool that performs comprehensive analysis, validation, a
3333

3434
```bash
3535
# Install Kalco
36-
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.sh | bash
36+
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/master/scripts/install.sh | bash
3737

3838
# Export your entire cluster
3939
kalco export

docs/use-cases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116

117117
- name: Install Kalco
118118
run: |
119-
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/main/scripts/install.sh | bash
119+
curl -fsSL https://raw.githubusercontent.com/graz-dev/kalco/master/scripts/install.sh | bash
120120
121121
- name: Export and Validate Cluster
122122
run: |

0 commit comments

Comments
 (0)