Skip to content

Commit 87868ea

Browse files
committed
fix: Update all repository URLs to RustSandbox/Credify
- Update all GitHub repository references from hamzeghalebi/credify to RustSandbox/Credify - Maintain correct author link to https://github.com/hghalebi - Fix GitHub Actions to use CARGO_REGISTRY_TOKEN (matching org secret) - Make CodeCov optional to prevent CI failures
1 parent fbd5e99 commit 87868ea

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ jobs:
8181
uses: codecov/codecov-action@v4
8282
with:
8383
file: cobertura.xml
84-
fail_ci_if_error: true
84+
fail_ci_if_error: false
85+
token: ${{ secrets.CODECOV_TOKEN }}
8586

8687
security_audit:
8788
name: Security audit

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
- name: Run tests
2727
run: cargo test --all
2828
- name: Publish to crates.io
29-
run: cargo publish --token ${{ secrets.CRATES_TOKEN }}
29+
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
3030
env:
31-
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_TOKEN }}
31+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
3232

3333
create-release:
3434
name: Create GitHub Release
@@ -64,6 +64,6 @@ jobs:
6464
credify = "${{ steps.version.outputs.VERSION }}"
6565
```
6666
67-
See [CHANGELOG.md](https://github.com/hamzeghalebi/credify/blob/main/CHANGELOG.md) for the full changelog.
67+
See [CHANGELOG.md](https://github.com/RustSandbox/Credify/blob/main/CHANGELOG.md) for the full changelog.
6868
draft: false
6969
prerelease: false

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5050
- Safe handling of all network errors
5151
- Proper timeout configuration for HTTP requests
5252

53-
[Unreleased]: https://github.com/hamzeghalebi/credify/compare/v0.2.0...HEAD
54-
[0.2.0]: https://github.com/hamzeghalebi/credify/compare/v0.1.0...v0.2.0
55-
[0.1.0]: https://github.com/hamzeghalebi/credify/releases/tag/v0.1.0
53+
[Unreleased]: https://github.com/RustSandbox/Credify/compare/v0.2.0...HEAD
54+
[0.2.0]: https://github.com/RustSandbox/Credify/compare/v0.1.0...v0.2.0
55+
[0.1.0]: https://github.com/RustSandbox/Credify/releases/tag/v0.1.0

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Enhancement suggestions are tracked as GitHub issues. When creating an enhanceme
4242

4343
1. **Setup your development environment:**
4444
```bash
45-
git clone https://github.com/hamzeghalebi/credify.git
45+
git clone https://github.com/RustSandbox/Credify.git
4646
cd credify
4747
cargo build
4848
```
@@ -108,7 +108,7 @@ Enhancement suggestions are tracked as GitHub issues. When creating an enhanceme
108108

109109
## Versioning
110110

111-
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/hamzeghalebi/credify/tags).
111+
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/RustSandbox/Credify/tags).
112112

113113
## License
114114

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ authors = ["Hamze Ghalebi <hamze.ghalebi@gmail.com>"]
77
license = "MIT OR Apache-2.0"
88
description = "A Rust library for validating LinkedIn profile URLs with LLM-friendly error messages"
99
documentation = "https://docs.rs/credify"
10-
homepage = "https://github.com/hamzeghalebi/credify"
11-
repository = "https://github.com/hamzeghalebi/credify"
10+
homepage = "https://github.com/RustSandbox/Credify"
11+
repository = "https://github.com/RustSandbox/Credify"
1212
readme = "README.md"
1313
keywords = ["linkedin", "validation", "url", "profile", "llm"]
1414
categories = ["web-programming", "web-programming::http-client", "parsing"]

PROJECT_STATUS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The crate is ready to be published to crates.io and GitHub:
7070

7171
2. **Push to GitHub:**
7272
```bash
73-
git remote add origin https://github.com/hamzeghalebi/credify.git
73+
git remote add origin https://github.com/RustSandbox/Credify.git
7474
git push -u origin main
7575
```
7676

@@ -101,7 +101,7 @@ The crate is ready to be published to crates.io and GitHub:
101101

102102
## = Links
103103

104-
- Repository: https://github.com/hamzeghalebi/credify
104+
- Repository: https://github.com/RustSandbox/Credify
105105
- Crates.io: https://crates.io/crates/credify (after publishing)
106106
- Documentation: https://docs.rs/credify (after publishing)
107107

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[![Crates.io](https://img.shields.io/crates/v/credify.svg)](https://crates.io/crates/credify)
77
[![Documentation](https://docs.rs/credify/badge.svg)](https://docs.rs/credify)
8-
[![CI](https://github.com/hamzeghalebi/credify/workflows/CI/badge.svg)](https://github.com/hamzeghalebi/credify/actions)
8+
[![CI](https://github.com/RustSandbox/Credify/workflows/CI/badge.svg)](https://github.com/RustSandbox/Credify/actions)
99
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1010
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1111
</div>
@@ -310,4 +310,4 @@ Built with:
310310

311311
---
312312

313-
Made with ❤️ by [Hamze Ghalebi](https://github.com/hamzeghalebi)
313+
Made with ❤️ by [Hamze Ghalebi](https://github.com/hghalebi)

RELEASE_NOTES_v0.2.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ Perfect for:
8484

8585
## 📖 Full Changelog
8686

87-
See [CHANGELOG.md](https://github.com/hamzeghalebi/credify/blob/main/CHANGELOG.md) for complete details.
87+
See [CHANGELOG.md](https://github.com/RustSandbox/Credify/blob/main/CHANGELOG.md) for complete details.

0 commit comments

Comments
 (0)