diff options
author | dundargoc <gocdundar@gmail.com> | 2023-12-29 19:19:58 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-12-29 20:01:20 +0100 |
commit | 9aed26079c3021bc194d4261ac4fa8011476cf3e (patch) | |
tree | df22f795fe560be3c30d5f58873fd6022fd827cc | |
parent | 1ef60ea6513be72a03958ed6239bfe474c85a7a3 (diff) | |
download | rneovim-9aed26079c3021bc194d4261ac4fa8011476cf3e.tar.gz rneovim-9aed26079c3021bc194d4261ac4fa8011476cf3e.tar.bz2 rneovim-9aed26079c3021bc194d4261ac4fa8011476cf3e.zip |
ci: add workflow_dispatch to optional.yml workflow
This makes it convenient to test optional.yml on release branch.
-rw-r--r-- | .github/workflows/optional.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/optional.yml b/.github/workflows/optional.yml index 0cd82550f3..655799cec8 100644 --- a/.github/workflows/optional.yml +++ b/.github/workflows/optional.yml @@ -2,6 +2,7 @@ name: optional on: pull_request: types: [labeled, opened, synchronize, reopened] + workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} @@ -16,7 +17,7 @@ env: jobs: s390x: - if: contains(github.event.pull_request.labels.*.name, 'ci-s390x') + if: contains(github.event.pull_request.labels.*.name, 'ci-s390x') || github.event_name == 'workflow_dispatch' strategy: fail-fast: false matrix: |