Skip to content

Commit 63601c8

Browse files
committed
build: add auths checks
1 parent af286a3 commit 63601c8

4 files changed

Lines changed: 30 additions & 0 deletions

File tree

.auths/allowed_signers

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# auths:managed — do not edit manually
2+
# Current identity (E6IXlw5-lnX88r3WZCt3u1qyN_Xlq7nQjtoTmuOfMIjI)
3+
z6MktnihicwetvA16FtHFynaJTn9eDZw51eizUEA1yGJCR4o@auths.local namespaces="git" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINT/yz5N7+GkzsRTHiyaueZbDy+fovwYUXyJ9uwD67tk
4+
# Previous identity
5+
z6MkipUqayiDZWM8j4YktjiEFZcCGw51YDVvLM7SrYPqLLyZ@auths.local namespaces="git" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEDeaOmUEcUjzChUedAsPyDO4mnjIa8j92fD9rGpuZd0
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Verify Commits
2+
on:
3+
pull_request:
4+
push:
5+
branches: [main]
6+
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
11+
jobs:
12+
verify:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- uses: auths-dev/auths-verify-github-action@v1
20+
with:
21+
allowed-signers: .auths/allowed_signers
22+
fail-on-unsigned: true
23+
post-pr-comment: 'true'
24+
github-token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# capsec
22

33
[![CI](https://github.com/auths-dev/capsec/actions/workflows/ci.yml/badge.svg)](https://github.com/auths-dev/capsec/actions/workflows/ci.yml)
4+
[![Verify Commits](https://github.com/auths-dev/capsec/actions/workflows/verify-commits.yml/badge.svg)](https://github.com/auths-dev/capsec/actions/workflows/verify-commits.yml?query=branch%3Amain+event%3Apush)
45
[![crates.io](https://img.shields.io/crates/v/capsec.svg)](https://crates.io/crates/capsec)
56
[![docs.rs](https://docs.rs/capsec/badge.svg)](https://docs.rs/capsec)
67

registry.lock

Whitespace-only changes.

0 commit comments

Comments
 (0)