Skip to content

Commit 8c4f106

Browse files
committed
chore: rename to more specific repo name
1 parent b084847 commit 8c4f106

13 files changed

Lines changed: 61 additions & 40 deletions

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
node_modules/
33

44
# Build output (committed only in the dedicated repo via sync script)
5-
dist/
5+
# dist/
66

77
# TypeScript build info
88
*.tsbuildinfo
9+
10+
# TypeScript declaration sourcemaps (contain local build paths)
11+
dist/**/*.d.ts.map
12+
13+
# Local tool directories
14+
.deepeval/

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Auths Verify Action
22

3-
Verify commit signatures using [Auths](https://github.com/bordumb/auths) identity keys. Ensures every commit in a PR or push is cryptographically signed by an authorized developer.
3+
Verify commit signatures using [Auths](https://github.com/auths-dev/auths) identity keys. Ensures every commit in a PR or push is cryptographically signed by an authorized developer.
44

55
## Quickstart
66

77
```yaml
88
- uses: actions/checkout@v4
99
with:
1010
fetch-depth: 0
11-
- uses: bordumb/auths-verify-action@v1
11+
- uses: auths-dev/auths-verify-github-action@v1
1212
with:
1313
allowed-signers: '.auths/allowed_signers'
1414
```
@@ -66,7 +66,7 @@ bob@example.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAA...
6666
```
6767

6868
```yaml
69-
- uses: bordumb/auths-verify-action@v1
69+
- uses: auths-dev/auths-verify-github-action@v1
7070
with:
7171
allowed-signers: '.auths/allowed_signers'
7272
```
@@ -83,15 +83,15 @@ gh secret set AUTHS_IDENTITY_BUNDLE < bundle.json
8383
Then use the secret in your workflow:
8484

8585
```yaml
86-
- uses: bordumb/auths-verify-action@v1
86+
- uses: auths-dev/auths-verify-github-action@v1
8787
with:
8888
identity-bundle-json: ${{ secrets.AUTHS_IDENTITY_BUNDLE }}
8989
```
9090

9191
Or commit the bundle (it contains only public data) and reference the file:
9292

9393
```yaml
94-
- uses: bordumb/auths-verify-action@v1
94+
- uses: auths-dev/auths-verify-github-action@v1
9595
with:
9696
identity-bundle: '.auths/identity-bundle.json'
9797
```
@@ -115,7 +115,7 @@ jobs:
115115
with:
116116
fetch-depth: 0
117117
118-
- uses: bordumb/auths-verify-action@v1
118+
- uses: auths-dev/auths-verify-github-action@v1
119119
with:
120120
allowed-signers: '.auths/allowed_signers'
121121
```
@@ -134,15 +134,15 @@ jobs:
134134
with:
135135
fetch-depth: 0
136136
137-
- uses: bordumb/auths-verify-action@v1
137+
- uses: auths-dev/auths-verify-github-action@v1
138138
with:
139139
identity-bundle-json: ${{ secrets.AUTHS_IDENTITY_BUNDLE }}
140140
```
141141

142142
### Non-blocking (Warn Only)
143143

144144
```yaml
145-
- uses: bordumb/auths-verify-action@v1
145+
- uses: auths-dev/auths-verify-github-action@v1
146146
with:
147147
allowed-signers: '.auths/allowed_signers'
148148
fail-on-unsigned: 'false'
@@ -164,7 +164,7 @@ jobs:
164164
with:
165165
fetch-depth: 0
166166
167-
- uses: bordumb/auths-verify-action@v1
167+
- uses: auths-dev/auths-verify-github-action@v1
168168
with:
169169
allowed-signers: '.auths/allowed_signers'
170170
post-pr-comment: 'true'
@@ -176,7 +176,7 @@ jobs:
176176
```yaml
177177
- name: Verify commits
178178
id: verify
179-
uses: bordumb/auths-verify-action@v1
179+
uses: auths-dev/auths-verify-github-action@v1
180180
with:
181181
allowed-signers: '.auths/allowed_signers'
182182
fail-on-unsigned: 'false'
@@ -211,7 +211,7 @@ jobs:
211211
with:
212212
fetch-depth: 0
213213
214-
- uses: bordumb/auths-verify-action@v1
214+
- uses: auths-dev/auths-verify-github-action@v1
215215
with:
216216
identity-bundle-json: ${{ secrets.AUTHS_IDENTITY_BUNDLE }}
217217
fail-on-unsigned: ${{ inputs.mode == 'enforce' && 'true' || 'false' }}
@@ -252,6 +252,6 @@ Apache-2.0. See [LICENSE](LICENSE).
252252

253253
## Links
254254

255-
- [Auths](https://github.com/bordumb/auths) - Decentralized identity for developers
256-
- [Auths CLI](https://github.com/bordumb/auths/tree/main/crates/auths-cli) - Command-line tool
257-
- [Signing commits with Auths](https://github.com/bordumb/auths#readme) - Setup guide
255+
- [Auths](https://github.com/auths-dev/auths) - Decentralized identity for developers
256+
- [Auths CLI](https://github.com/auths-dev/auths/tree/main/crates/auths-cli) - Command-line tool
257+
- [Signing commits with Auths](https://github.com/auths-dev/auths#readme) - Setup guide

dist/__tests__/main.test.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/__tests__/verifier.test.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32663,12 +32663,12 @@ function fixMessageForType(type, commit, failedCount) {
3266332663
``,
3266432664
`Install auths:`,
3266532665
` macOS: brew install auths`,
32666-
` Linux: See https://github.com/bordumb/auths/releases/latest`,
32666+
` Linux: See https://github.com/auths-dev/auths/releases/latest`,
3266732667
``,
3266832668
`Then re-sign and push:`,
3266932669
` ${amendCmd}`,
3267032670
``,
32671-
`Quickstart: https://github.com/bordumb/auths#quickstart`,
32671+
`Quickstart: https://github.com/auths-dev/auths#quickstart`,
3267232672
].join('\n');
3267332673
case 'unknown_signer':
3267432674
return [
@@ -32735,14 +32735,14 @@ function buildSummaryMarkdown(results, passed, skipped, failed, total) {
3273532735
lines.push(`Commit \`${firstFailed.commit.slice(0, 8)}\` is not signed. Install auths and re-sign:`);
3273632736
lines.push('');
3273732737
lines.push('**macOS:** `brew install auths`');
32738-
lines.push('**Linux:** Download from [releases](https://github.com/bordumb/auths/releases/latest)');
32738+
lines.push('**Linux:** Download from [releases](https://github.com/auths-dev/auths/releases/latest)');
3273932739
lines.push('');
3274032740
lines.push('Then re-sign:');
3274132741
lines.push('```');
3274232742
lines.push(amendCmd);
3274332743
lines.push('```');
3274432744
lines.push('');
32745-
lines.push('[Quickstart →](https://github.com/bordumb/auths#quickstart)');
32745+
lines.push('[Quickstart →](https://github.com/auths-dev/auths#quickstart)');
3274632746
break;
3274732747
case 'unknown_signer':
3274832748
lines.push(`Commit \`${firstFailed.commit.slice(0, 8)}\` is signed but the key is not in the allowed signers.`);
@@ -32879,7 +32879,7 @@ const fs = __importStar(__nccwpck_require__(9896));
3287932879
const path = __importStar(__nccwpck_require__(6928));
3288032880
const os = __importStar(__nccwpck_require__(857));
3288132881
// Repository that hosts the public auths CLI releases
32882-
const CLI_RELEASE_REPO = 'bordumb/auths-releases';
32882+
const CLI_RELEASE_REPO = 'auths-dev/auths-releases';
3288332883
/**
3288432884
* Classify a verification error string into a structured failure type.
3288532885
*/

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/verifier.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/__tests__/verifier.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('getAuthsDownloadUrl', () => {
4141

4242
const url = getAuthsDownloadUrl('');
4343
expect(url).toBe(
44-
'https://github.com/bordumb/auths-releases/releases/latest/download/auths-linux-x86_64.tar.gz'
44+
'https://github.com/auths-dev/auths-releases/releases/latest/download/auths-linux-x86_64.tar.gz'
4545
);
4646
});
4747

@@ -51,7 +51,7 @@ describe('getAuthsDownloadUrl', () => {
5151

5252
const url = getAuthsDownloadUrl('');
5353
expect(url).toBe(
54-
'https://github.com/bordumb/auths-releases/releases/latest/download/auths-macos-aarch64.tar.gz'
54+
'https://github.com/auths-dev/auths-releases/releases/latest/download/auths-macos-aarch64.tar.gz'
5555
);
5656
});
5757

@@ -61,7 +61,7 @@ describe('getAuthsDownloadUrl', () => {
6161

6262
const url = getAuthsDownloadUrl('');
6363
expect(url).toBe(
64-
'https://github.com/bordumb/auths-releases/releases/latest/download/auths-windows-x86_64.zip'
64+
'https://github.com/auths-dev/auths-releases/releases/latest/download/auths-windows-x86_64.zip'
6565
);
6666
});
6767

@@ -71,7 +71,7 @@ describe('getAuthsDownloadUrl', () => {
7171

7272
const url = getAuthsDownloadUrl('0.5.0');
7373
expect(url).toBe(
74-
'https://github.com/bordumb/auths-releases/releases/download/v0.5.0/auths-linux-x86_64.tar.gz'
74+
'https://github.com/auths-dev/auths-releases/releases/download/v0.5.0/auths-linux-x86_64.tar.gz'
7575
);
7676
});
7777

@@ -97,7 +97,7 @@ describe('getAuthsDownloadUrl', () => {
9797

9898
const url = getAuthsDownloadUrl('');
9999
expect(url).toBe(
100-
'https://github.com/bordumb/auths-releases/releases/latest/download/auths-macos-x86_64.tar.gz'
100+
'https://github.com/auths-dev/auths-releases/releases/latest/download/auths-macos-x86_64.tar.gz'
101101
);
102102
});
103103

@@ -107,7 +107,7 @@ describe('getAuthsDownloadUrl', () => {
107107

108108
const url = getAuthsDownloadUrl('');
109109
expect(url).toBe(
110-
'https://github.com/bordumb/auths-releases/releases/latest/download/auths-linux-aarch64.tar.gz'
110+
'https://github.com/auths-dev/auths-releases/releases/latest/download/auths-linux-aarch64.tar.gz'
111111
);
112112
});
113113
});

0 commit comments

Comments
 (0)