From 1d7370f3908033965b98414eedb44f2a4611639c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20J=2E=20W=C4=99grzyn?= <40713288+piotrjwegrzyn@users.noreply.github.com> Date: Mon, 9 Sep 2024 07:17:20 +0200 Subject: [PATCH] deployment, integration and PR 2 (#36) --- .github/workflows/eth_deploy.yml | 2 +- eth/cyrograf.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/eth_deploy.yml b/.github/workflows/eth_deploy.yml index c9d0dd0..e691dd5 100644 --- a/.github/workflows/eth_deploy.yml +++ b/.github/workflows/eth_deploy.yml @@ -74,7 +74,7 @@ jobs: cp sc_connector.json integration/ - name: Commit changes run: | - git config --global user.email "${{ env.CI_COMMIT_AUTHOR }}" + git config --global user.email "github-actions[bot]@users.noreply.github.com" git config --global user.name "github-actions[bot]" git add ui/ integration/ git commit -m "${branch_name}" diff --git a/eth/cyrograf.sol b/eth/cyrograf.sol index e17a18e..c261235 100644 --- a/eth/cyrograf.sol +++ b/eth/cyrograf.sol @@ -18,7 +18,7 @@ contract Cyrograf { Background currentBackground; constructor() { - currentBackground = Background(msg.sender, RGB(200,100,0), RGB(30,20,10)); + currentBackground = Background(msg.sender, RGB(200,100,123), RGB(30,20,10)); } function getBackground() public view returns (Background memory){