Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit ce43975

Browse files
Merge pull request #32 from findy-network/use-releaser-action
Use releaser action
2 parents 28bac66 + f23132d commit ce43975

File tree

5 files changed

+24
-54
lines changed

5 files changed

+24
-54
lines changed

.github/workflows/do-release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: tag-release
2+
on:
3+
schedule:
4+
- cron: "0 1 * * 1-5" # run at 1 AM UTC on weekdays
5+
workflow_dispatch:
6+
7+
jobs:
8+
tag-release:
9+
runs-on: ubuntu-latest
10+
name: Tag release if changes
11+
steps:
12+
- uses: findy-network/releaser-action@v5
13+
with:
14+
# use personal access token so that events are created for tag push
15+
token: ${{ secrets.RELEASER_PAT }}
16+
gate: test

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Findy Agency Service API
22

3+
[![test](https://github.com/findy-network/findy-agent-api/actions/workflows/test.yml/badge.svg?branch=dev)](https://github.com/findy-network/findy-agent-api/actions/workflows/test.yml)
4+
35
The gRPC API v1 includes interfaces for:
6+
47
- **operation services**: log levels, statistics, health checking, etc.
58
- **agency services**: new agent on boarding, data hooks, etc.
69
- **clould agent services**: notifications, responses, etc.
@@ -11,7 +14,9 @@ More detailed documentation for each of them can be found from `protoc` files in
1114
compiled from the IDL files.
1215

1316
## Typical Findy Agency Service Setup
17+
1418
The current implementation of the Findy Agency has three main services:
19+
1520
1. `findy-agent` includes the protocol engine which runs Aries compatible agent
1621
protocols and cloud agents.
1722
2. `findy-agent-auth` includes a standard WebAuthn server. The
@@ -23,13 +28,13 @@ The current implementation of the Findy Agency has three main services:
2328
## Client Stubs And Helpers
2429

2530
Both [findy-common-go](https://github.com/findy-network/findy-common-go) and
26-
[findy-common-ts](https://github.com/findy-network/findy-common-ts) include
31+
[findy-common-ts](https://github.com/findy-network/findy-common-ts) include
2732
client stubs and some convenient helpers for the use of the API.
2833

2934
## Service Implementations
3035

3136
The most of the services are implemented by the findy core agency in
32-
[`findy-agent`](https://github.com/findy-network/findy-agent).
37+
[`findy-agent`](https://github.com/findy-network/findy-agent).
3338

3439
## Client Reference Implementations
3540

@@ -41,4 +46,5 @@ The most of the services are implemented by the findy core agency in
4146

4247
We follow [the style guide](https://developers.google.com/protocol-buffers/docs/style)
4348
with the following special rules:
49+
4450
- treat acronyms like numbers in the style guide.

scripts/README.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

scripts/release.sh

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)