From c648e41aacf6ee3ac8e3f7a8ce0a34281628613f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaya=20G=C3=B6kalp?= Date: Sat, 28 Oct 2023 14:06:34 +0300 Subject: [PATCH] chore: fix releasy test tracking branch from `main` to `master` (#1460) As it can be seen from https://github.com/FuelLabs/fuels-rs/pull/1174 releasy only worked for self commits so far. This is because we were tracking the wrong branch from this repo. This PR fixes the tracking branch for this repo, from `main` to `master`. --- .github/workflows/releasy-dependency-commits.yml | 2 +- CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/releasy-dependency-commits.yml b/.github/workflows/releasy-dependency-commits.yml index 2912a72990f..9c58c1baecb 100644 --- a/.github/workflows/releasy-dependency-commits.yml +++ b/.github/workflows/releasy-dependency-commits.yml @@ -3,7 +3,7 @@ name: Notify downstream repos on: push: branches: - - main + - master jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index 99d33957505..95e7126db2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ Description of the upcoming release here. ### Changed +- [#1460](https://github.com/FuelLabs/fuel-core/pull/1460): Change tracking branch from main to master for releasy tests. - [#1440](https://github.com/FuelLabs/fuel-core/pull/1440): Don't report reserved nodes that send invalid transactions. - [#1439](https://github.com/FuelLabs/fuel-core/pull/1439): Reduced memory BMT consumption during creation of the header. - [#1434](https://github.com/FuelLabs/fuel-core/pull/1434): Continue gossiping transactions to reserved peers regardless of gossiping reputation score.