Skip to content
This repository has been archived by the owner on Nov 28, 2024. It is now read-only.

Commit

Permalink
Add workflow_dispatch even trigger for github workflows
Browse files Browse the repository at this point in the history
In order to run these workflows manually from the GitHub UI, they need
to also be triggered by workflow_dispatch.

https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch

They may need to be run manually at times in order to bump the version
of the openstack-ansibleee-runner image set in
$RELATED_IMAGE_ANSIBLEEE_IMAGE_URL_DEFAULT by .github/create_bundle.sh.

Signed-off-by: James Slagle <jslagle@redhat.com>
  • Loading branch information
slagle committed Oct 19, 2023
1 parent 3ca68c9 commit 41939b2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-openstack-ansibleee-operator.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: OpenStackAnsibleEE Operator image builder

on:
push:
branches:
- '*'
- push:
branches:
- '*'
- workflow_dispatch

env:
imageregistry: 'quay.io'
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/release-openstack-ansibleee-operator.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Release OpenStackAnsibleEE Operator

on:
release:
types:
- released
- prereleased
- release:
types:
- released
- prereleased
- workflow_dispatch

env:
imageregistry: 'quay.io'
Expand Down

0 comments on commit 41939b2

Please sign in to comment.