Skip to content

Commit

Permalink
ci: add beta releasy to fuel-core (FuelLabs#1400)
Browse files Browse the repository at this point in the history
## Description

This adds releasy-beta to fuel-core which will ping fuels-rs repo every
time there is a new commit to the master of this repo.

Once we ensure everything works nicely we will start working with all
repos with the same procedure.

---------

Co-authored-by: Green Baneling <[email protected]>
  • Loading branch information
kayagokalp and xgreenx authored Oct 23, 2023
1 parent 91170fd commit 2a45290
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/releasy-dependency-commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Notify downstream repos

on:
push:
branches:
- main

jobs:

notify:
runs-on: ubuntu-latest
env:
DISPATCH_TOKEN: ${{ secrets.DISPATCH_TOKEN }}
steps:
- uses: actions/checkout@v4
- run: |
git clone https://github.com/FuelLabs/releasy && cd releasy && git checkout kayagokalp/releasy-handle && cd ..
cargo install --path ./releasy/releasy-emit
releasy-emit --event new-commit-to-dependency --path ./.github/workflows/repo-plan.toml --event-commit-hash ${GITHUB_SHA}
name: Install and run releasy
14 changes: 14 additions & 0 deletions .github/workflows/repo-plan.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[current-repo]
name = "fuel-core"
owner = "FuelLabs"

[repo.fuels-rs.details]
name = "fuels-rs"
owner = "FuelLabs"

[repo.fuel-core.details]
name = "fuel-core"
owner = "FuelLabs"

[repo.fuels-rs]
dependencies = ["fuel-core"]
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Description of the upcoming release here.

- [#1432](https://github.com/FuelLabs/fuel-core/pull/1432): Add a new `--api-request-timeout` argument to control TTL for GraphQL requests.
- [#1419](https://github.com/FuelLabs/fuel-core/pull/1419): Add additional "sanity" benchmarks for arithmetic op code instructions.
- [#1411](https://github.com/FuelLabs/fuel-core/pull/1411): Added WASM and `no_std` compatibility
- [#1411](https://github.com/FuelLabs/fuel-core/pull/1411): Added WASM and `no_std` compatibility.
- [#1400](https://github.com/FuelLabs/fuel-core/pull/1400): Add releasy beta to fuel-core so that new commits to fuel-core master triggers fuels-rs.
- [#1371](https://github.com/FuelLabs/fuel-core/pull/1371): Add new client function for querying the `MessageStatus` for a specific message (by `Nonce`)
- [#1356](https://github.com/FuelLabs/fuel-core/pull/1356): Add peer reputation reporting to heartbeat code
- [#1355](https://github.com/FuelLabs/fuel-core/pull/1355): Added new metrics related to block importing, such as tps, sync delays etc
Expand Down

0 comments on commit 2a45290

Please sign in to comment.