forked from FuelLabs/fuel-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add beta releasy to fuel-core (FuelLabs#1400)
## 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
1 parent
91170fd
commit 2a45290
Showing
3 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters