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
2 changes: 1 addition & 1 deletion lifecycle/scripts/make-rules/license.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ TEMPLATE := $(ROOT_DIR)/scripts/template/LICENSE
.PHONY: license.verify
license.verify: tools.verify.addlicense
@echo "===========> Verifying the boilerplate headers for all files"
@$(TOOLS_DIR)/addlicense -check -ignore **/test/** -f $(TEMPLATE) $(CODE_DIRS)
@$(TOOLS_DIR)/addlicense -check -ignore **/test/** -ignore **/.github/** -f $(TEMPLATE) $(CODE_DIRS)

.PHONY: license.add
license.add: tools.verify.addlicense license.controller.add
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ❌ Close Pull Requests

on:
pull_request_target:
types: [opened]

jobs:
close-pr:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- name: Close Pull Request
uses: superbrothers/close-pull-request@v3
with:
comment: "❌ PRs are not accepted in this repository."
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,41 @@ Dec 11 02:18:47 test-node-0 image-cri-shim[46869]: 2022-12-11T02:18:47 info User
Dec 11 02:18:47 test-node-0 image-cri-shim[46869]: 2022-12-11T02:18:47 info Password: passw0rd
Dec 11 02:18:47 test-node-0 image-cri-shim[46869]: 2022-12-11T02:18:47 info CRIVersion: v1
```

# Contribution Policy

🚫 **This repository does NOT accept any form of contributions.**
This includes:
- ❌ Pull requests
- ❌ Direct code submissions
- ❌ Bug reports
- ❌ Feature requests
- ❌ Documentation changes

**All contributions must be submitted exclusively to the central repository:**
👉 **https://github.com/labring/sealos**

---

## Contribution Guidelines
1. **For bugs**
→ Report in the [Issues section of the main repository](https://github.com/labring/sealos/issues)
→ Include reproduction steps and environment details

2. **For code contributions**
→ Submit changes via **main repository only**
→ Follow contribution guidelines at [sealos/CONTRIBUTING.md](https://github.com/labring/sealos/blob/main/CONTRIBUTING.md)

3. **For feature requests**
→ Create an Issue in the [main repository](https://github.com/labring/sealos/issues) with `[Feature]` prefix

---

## Important Notes
⚠️ **This repository is read-only**
- Serves as reference implementation only
- Active development occurs exclusively at [labring/sealos](https://github.com/labring/sealos)
- PRs/issues submitted here will be **closed immediately without review**

📌 **Any contributions made to this repository will be invalid**
For your submissions to be considered, please use the central repository.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ❌ Close Pull Requests

on:
pull_request_target:
types: [opened]

jobs:
close-pr:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- name: Close Pull Request
uses: superbrothers/close-pull-request@v3
with:
comment: "❌ PRs are not accepted in this repository."
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39 changes: 39 additions & 0 deletions lifecycle/staging/src/github.com/labring/lvscare/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,42 @@ lvscare care --vs 169.254.0.1:80 --logger DEBG --mode link -C
```

Welcome to give it a shot, have fun with it.


# Contribution Policy

🚫 **This repository does NOT accept any form of contributions.**
This includes:
- ❌ Pull requests
- ❌ Direct code submissions
- ❌ Bug reports
- ❌ Feature requests
- ❌ Documentation changes

**All contributions must be submitted exclusively to the central repository:**
👉 **https://github.com/labring/sealos**

---

## Contribution Guidelines
1. **For bugs**
→ Report in the [Issues section of the main repository](https://github.com/labring/sealos/issues)
→ Include reproduction steps and environment details

2. **For code contributions**
→ Submit changes via **main repository only**
→ Follow contribution guidelines at [sealos/CONTRIBUTING.md](https://github.com/labring/sealos/blob/main/CONTRIBUTING.md)

3. **For feature requests**
→ Create an Issue in the [main repository](https://github.com/labring/sealos/issues) with `[Feature]` prefix

---

## Important Notes
⚠️ **This repository is read-only**
- Serves as reference implementation only
- Active development occurs exclusively at [labring/sealos](https://github.com/labring/sealos)
- PRs/issues submitted here will be **closed immediately without review**

📌 **Any contributions made to this repository will be invalid**
For your submissions to be considered, please use the central repository.
Loading