From ee80701cc2dbc6d8b3e0ae5acaca85c7b43f43c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michalina=20Ciencia=C5=82a?= Date: Tue, 20 Jun 2023 13:26:31 +0200 Subject: [PATCH] Add testing configuration The change needs to be reverted before merge to `main`. It's only added to test pushing of PRs with API docs after changes in contracts. --- .github/workflows/contracts-docs.yml | 2 +- solidity/contracts/bank/Bank.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/contracts-docs.yml b/.github/workflows/contracts-docs.yml index 6556727fa..85e3e1a6d 100644 --- a/.github/workflows/contracts-docs.yml +++ b/.github/workflows/contracts-docs.yml @@ -64,7 +64,7 @@ jobs: needs: docs-detect-changes # TODO: remove last OR if: (github.event_name == 'release' && startsWith(github.ref, 'refs/tags/solidity/')) || github.ref == 'refs/pull/584/merge' - uses: keep-network/ci/.github/workflows/reusable-solidity-docs.yml@main + uses: keep-network/ci/.github/workflows/reusable-solidity-docs.yml@change-authentication-for-docs-workflow # TODO: change to `main` before merge with: projectDir: /solidity # We need to remove unnecessary `//` comment used in the `@dev` diff --git a/solidity/contracts/bank/Bank.sol b/solidity/contracts/bank/Bank.sol index 49af02948..d44aae20a 100644 --- a/solidity/contracts/bank/Bank.sol +++ b/solidity/contracts/bank/Bank.sol @@ -20,7 +20,7 @@ import "@openzeppelin/contracts/access/Ownable.sol"; import "./IReceiveBalanceApproval.sol"; import "../vault/IVault.sol"; -/// @title Bitcoin Bank TEST +/// @title Bitcoin Bank /// @notice Bank is a central component tracking Bitcoin balances. Balances can /// be transferred between balance owners, and balance owners can /// approve their balances to be spent by others. Balances in the Bank