Skip to content

Commit d886080

Browse files
authored
Update for transfer ownership (#60)
1 parent aaa3b1c commit d886080

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/cpp-linter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14-
- uses: shenxianpeng/cpp-linter-action@master
14+
- uses: cpp-linter/cpp-linter-action@master
1515
id: linter
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ LABEL com.github.actions.description="Lint your code with clang-tidy in parallel
99
LABEL com.github.actions.icon="code"
1010
LABEL com.github.actions.color="gray-dark"
1111

12-
LABEL repository="https://github.com/shenxianpeng/cpp-linter-action"
12+
LABEL repository="https://github.com/cpp-linter/cpp-linter-action"
1313
LABEL maintainer="shenxianpeng <[email protected]>"
1414

1515
RUN apt-get update && apt-get -y install python3-pip

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55

66
# C/C++ Lint Action <sub><sup>| clang-format & clang-tidy</sup></sub>
77

8-
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/shenxianpeng/cpp-linter-action?style=flat-square)
8+
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/cpp-linter/cpp-linter-action?style=flat-square)
99
[![GitHub marketplace](https://img.shields.io/badge/marketplace-C%2FC%2B%2B%20Lint%20Action-blue?logo=github&style=flat-square)](https://github.com/marketplace/actions/c-c-lint-action)
10-
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/shenxianpeng/cpp-linter-action/cpp-linter?label=cpp-linter&logo=Github&style=flat-square)](https://github.com/shenxianpeng/cpp-linter-action/actions/workflows/cpp-linter.yml)
11-
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/shenxianpeng/cpp-linter-action/MkDocs%20Deploy?label=docs&logo=Github&style=flat-square)](https://github.com/shenxianpeng/cpp-linter-action/actions/workflows/mkdocs-deploy.yml)
12-
![GitHub](https://img.shields.io/github/license/shenxianpeng/cpp-linter-action?label=license&logo=github&style=flat-square)
13-
[![open repo in gitpod](https://img.shields.io/badge/Gitpod-Use%20Online%20IDE-B16C04?logo=gitpod&style=flat-square)](https://gitpod.io/#https://github.com/shenxianpeng/cpp-linter-action)
10+
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/cpp-linter/cpp-linter-action/cpp-linter?label=cpp-linter&logo=Github&style=flat-square)](https://github.com/cpp-linter/cpp-linter-action/actions/workflows/cpp-linter.yml)
11+
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/cpp-linter/cpp-linter-action/MkDocs%20Deploy?label=docs&logo=Github&style=flat-square)](https://github.com/cpp-linter/cpp-linter-action/actions/workflows/mkdocs-deploy.yml)
12+
![GitHub](https://img.shields.io/github/license/cpp-linter/cpp-linter-action?label=license&logo=github&style=flat-square)
13+
[![open repo in gitpod](https://img.shields.io/badge/Gitpod-Use%20Online%20IDE-B16C04?logo=gitpod&style=flat-square)](https://gitpod.io/#https://github.com/cpp-linter/cpp-linter-action)
1414

1515
A Github Action for linting C/C++ code integrating clang-tidy and clang-format to collect feedback provided in the form of thread comments and/or annotations.
1616

1717
## Usage
1818

19-
Create a new GitHub Actions workflow in your project, e.g. at [.github/workflows/cpp-linter.yml](https://github.com/shenxianpeng/cpp-linter-action/blob/master/.github/workflows/cpp-linter.yml)
19+
Create a new GitHub Actions workflow in your project, e.g. at [.github/workflows/cpp-linter.yml](https://github.com/cpp-linter/cpp-linter-action/blob/master/.github/workflows/cpp-linter.yml)
2020

2121
The content of the file should be in the following format.
2222

@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- uses: actions/checkout@v3
38-
- uses: shenxianpeng/cpp-linter-action@v1
38+
- uses: cpp-linter/cpp-linter-action@v1
3939
id: linter
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -166,7 +166,7 @@ jobs:
166166
directory: ${{ runner.temp }}/llvm
167167

168168
- name: Install linter python package
169-
run: python3 -m pip install git+https://github.com/shenxianpeng/cpp-linter-action@v1
169+
run: python3 -m pip install git+https://github.com/cpp-linter/cpp-linter-action@v1
170170

171171
- name: run linter as a python package
172172
id: linter
@@ -205,17 +205,17 @@ You can show C/C++ Lint Action status with a badge in your repository README
205205
Example
206206

207207
```markdown
208-
[![cpp-linter](https://github.com/shenxianpeng/cpp-linter-action/actions/workflows/cpp-linter.yml/badge.svg)](https://github.com/shenxianpeng/cpp-linter-action/actions/workflows/cpp-linter.yml)
208+
[![cpp-linter](https://github.com/cpp-linter/cpp-linter-action/actions/workflows/cpp-linter.yml/badge.svg)](https://github.com/cpp-linter/cpp-linter-action/actions/workflows/cpp-linter.yml)
209209
```
210210

211-
[![cpp-linter](https://github.com/shenxianpeng/cpp-linter-action/actions/workflows/cpp-linter.yml/badge.svg)](https://github.com/shenxianpeng/cpp-linter-action/actions/workflows/cpp-linter.yml)
211+
[![cpp-linter](https://github.com/cpp-linter/cpp-linter-action/actions/workflows/cpp-linter.yml/badge.svg)](https://github.com/cpp-linter/cpp-linter-action/actions/workflows/cpp-linter.yml)
212212

213213
## Have question or feedback?
214214

215-
To provide feedback (requesting a feature or reporting a bug) please post to [issues](https://github.com/shenxianpeng/cpp-linter-action/issues).
215+
To provide feedback (requesting a feature or reporting a bug) please post to [issues](https://github.com/cpp-linter/cpp-linter-action/issues).
216216

217217
## License
218218

219-
The scripts and documentation in this project are released under the [MIT License](https://github.com/shenxianpeng/cpp-linter-action/blob/master/LICENSE)
219+
The scripts and documentation in this project are released under the [MIT License](https://github.com/cpp-linter/cpp-linter-action/blob/master/LICENSE)
220220

221221
<!--footer-end-->

mkdocs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
site_name: C/C++ Linter Action
22
site_description: "Developer documentation from sources."
3-
site_url: "https://shenxianpeng.github.io/cpp-linter-action"
4-
repo_url: "https://github.com/shenxianpeng/cpp-linter-action"
3+
site_url: "https://cpp-linter.github.io/cpp-linter-action"
4+
repo_url: "https://github.com/cpp-linter/cpp-linter-action"
55
edit_uri: "blob/master/docs/"
6-
repo_name: "shenxianpeng/cpp-linter-action"
6+
repo_name: "cpp-linter/cpp-linter-action"
77
nav:
88
- index.md
99
- "Dev Docs":

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ROOT_DIR = os.path.abspath(os.path.dirname(__file__))
77
REPO = "https://github.com/"
88
repo = os.getenv("GITHUB_REPOSITORY", None) # in case this is published from a fork
9-
REPO += "shenxianpeng/cpp-linter-action" if repo is None else repo
9+
REPO += "cpp-linter/cpp-linter-action" if repo is None else repo
1010

1111

1212
setup(

0 commit comments

Comments
 (0)