From 7be3b54eb7be32a2a4e329dd632152cdd96fc3b4 Mon Sep 17 00:00:00 2001 From: galargh Date: Sun, 28 Jul 2024 10:44:46 +0100 Subject: [PATCH] chore: limit released packages and update separator --- .github/workflows/release-check.yml | 30 ++++++----------------------- .github/workflows/releaser.yml | 27 +++----------------------- 2 files changed, 9 insertions(+), 48 deletions(-) diff --git a/.github/workflows/release-check.yml b/.github/workflows/release-check.yml index 22b2a687..44096e01 100644 --- a/.github/workflows/release-check.yml +++ b/.github/workflows/release-check.yml @@ -3,25 +3,17 @@ name: Release Checker on: pull_request_target: paths: [ + "dispatch_examples/greeter/Cargo.toml", + "frc42_dispatch/Cargo.toml", + "frc42_dispatch/hasher/Cargo.toml", "dispatch_examples/greeter/Cargo.toml", "frc42_dispatch/Cargo.toml", "frc42_dispatch/hasher/Cargo.toml", "frc42_dispatch/macros/Cargo.toml", - "frc42_dispatch/macros/example/Cargo.toml", "frc46_token/Cargo.toml", "frc53_nft/Cargo.toml", "fvm_actor_utils/Cargo.toml", - "fvm_dispatch_tools/Cargo.toml", - "testing/integration/Cargo.toml", - "testing/test_actors/Cargo.toml", - "testing/test_actors/actors/basic_nft_actor/Cargo.toml", - "testing/test_actors/actors/basic_receiving_actor/Cargo.toml", - "testing/test_actors/actors/basic_token_actor/Cargo.toml", - "testing/test_actors/actors/basic_transfer_actor/Cargo.toml", - "testing/test_actors/actors/frc46_factory_actor/Cargo.toml", - "testing/test_actors/actors/frc46_test_actor/Cargo.toml", - "testing/test_actors/actors/frc53_test_actor/Cargo.toml", - "testing/test_actors/actors/frc46_factory_token/token_impl/Cargo.toml" + "fvm_dispatch_tools/Cargo.toml" ] types: [ opened, synchronize, reopened, labeled, unlabeled ] workflow_dispatch: @@ -44,19 +36,9 @@ jobs: "frc42_dispatch/Cargo.toml", "frc42_dispatch/hasher/Cargo.toml", "frc42_dispatch/macros/Cargo.toml", - "frc42_dispatch/macros/example/Cargo.toml", "frc46_token/Cargo.toml", "frc53_nft/Cargo.toml", "fvm_actor_utils/Cargo.toml", - "fvm_dispatch_tools/Cargo.toml", - "testing/integration/Cargo.toml", - "testing/test_actors/Cargo.toml", - "testing/test_actors/actors/basic_nft_actor/Cargo.toml", - "testing/test_actors/actors/basic_receiving_actor/Cargo.toml", - "testing/test_actors/actors/basic_token_actor/Cargo.toml", - "testing/test_actors/actors/basic_transfer_actor/Cargo.toml", - "testing/test_actors/actors/frc46_factory_actor/Cargo.toml", - "testing/test_actors/actors/frc46_test_actor/Cargo.toml", - "testing/test_actors/actors/frc53_test_actor/Cargo.toml", - "testing/test_actors/actors/frc46_factory_token/token_impl/Cargo.toml" + "fvm_dispatch_tools/Cargo.toml" ] + separator: "@" diff --git a/.github/workflows/releaser.yml b/.github/workflows/releaser.yml index bc8d60b8..4c49afa9 100644 --- a/.github/workflows/releaser.yml +++ b/.github/workflows/releaser.yml @@ -7,21 +7,10 @@ on: "frc42_dispatch/Cargo.toml", "frc42_dispatch/hasher/Cargo.toml", "frc42_dispatch/macros/Cargo.toml", - "frc42_dispatch/macros/example/Cargo.toml", "frc46_token/Cargo.toml", "frc53_nft/Cargo.toml", "fvm_actor_utils/Cargo.toml", - "fvm_dispatch_tools/Cargo.toml", - "testing/integration/Cargo.toml", - "testing/test_actors/Cargo.toml", - "testing/test_actors/actors/basic_nft_actor/Cargo.toml", - "testing/test_actors/actors/basic_receiving_actor/Cargo.toml", - "testing/test_actors/actors/basic_token_actor/Cargo.toml", - "testing/test_actors/actors/basic_transfer_actor/Cargo.toml", - "testing/test_actors/actors/frc46_factory_actor/Cargo.toml", - "testing/test_actors/actors/frc46_test_actor/Cargo.toml", - "testing/test_actors/actors/frc53_test_actor/Cargo.toml", - "testing/test_actors/actors/frc46_factory_token/token_impl/Cargo.toml" + "fvm_dispatch_tools/Cargo.toml" ] workflow_dispatch: @@ -42,21 +31,11 @@ jobs: "frc42_dispatch/Cargo.toml", "frc42_dispatch/hasher/Cargo.toml", "frc42_dispatch/macros/Cargo.toml", - "frc42_dispatch/macros/example/Cargo.toml", "frc46_token/Cargo.toml", "frc53_nft/Cargo.toml", "fvm_actor_utils/Cargo.toml", - "fvm_dispatch_tools/Cargo.toml", - "testing/integration/Cargo.toml", - "testing/test_actors/Cargo.toml", - "testing/test_actors/actors/basic_nft_actor/Cargo.toml", - "testing/test_actors/actors/basic_receiving_actor/Cargo.toml", - "testing/test_actors/actors/basic_token_actor/Cargo.toml", - "testing/test_actors/actors/basic_transfer_actor/Cargo.toml", - "testing/test_actors/actors/frc46_factory_actor/Cargo.toml", - "testing/test_actors/actors/frc46_test_actor/Cargo.toml", - "testing/test_actors/actors/frc53_test_actor/Cargo.toml", - "testing/test_actors/actors/frc46_factory_token/token_impl/Cargo.toml" + "fvm_dispatch_tools/Cargo.toml" ] + separator: "@" secrets: UCI_GITHUB_TOKEN: ${{ secrets.UCI_GITHUB_TOKEN }}