diff --git a/.github/workflows/prepare_release_crates.yml b/.github/workflows/prepare_release_crates.yml index 441c223dd050b2..da1aa052f621a1 100644 --- a/.github/workflows/prepare_release_crates.yml +++ b/.github/workflows/prepare_release_crates.yml @@ -2,6 +2,9 @@ name: Prepare Release Crates on: workflow_dispatch: + push: + branches: + - trigger-other-workflow concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -10,10 +13,20 @@ concurrency: permissions: pull-requests: write contents: write + actions: write jobs: prepare_release: name: Prepare Release Crates - uses: ./.github/workflows/reusable_prepare_release.yml - with: - name: crates + runs-on: ubuntu-latest + steps: + - uses: benc-uk/workflow-dispatch@v1 + with: + workflow: ecosystem-ci.yml + repo: oxc-project/oxlint-ecosystem-ci + token: ${{ secrets.PAT }} + ref: main + + # uses: ./.github/workflows/reusable_prepare_release.yml + # with: + # name: crates