Skip to content

Commit

Permalink
Allow Update Gem Version Artifacts workflow to trigger CI build.
Browse files Browse the repository at this point in the history
Both #225 and #226 received updated commits from the `Update Gem Version
Artifacts` workflow, but the CI build did not run in either case. This
should fix it so that it runs.
  • Loading branch information
myronmarston committed Feb 25, 2025
1 parent a2ce298 commit 2cf9f4c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ on:
branches:
- main
pull_request:
# To avoid infinite workflow loops, a PR update triggered by one workflow will not
# automatically run other workflows.
#
# The `Update Gem Version Artifacts` workflow pushes new commits to dependabot PRs,
# and we need to run the CI build on those commits so we can judge whether or not it
# is safe to merge. To enable that, we have to opt-in to having this CI workflow run
# when `Update Gem Version Artifacts` completes.
workflow_run:
workflows: ["Update Gem Version Artifacts"]
types: [completed]

env:
# It's recommended to run ElasticGraph with this option to get better performance. We want to run
Expand Down

0 comments on commit 2cf9f4c

Please sign in to comment.