Skip to content

Commit

Permalink
fix(keepalive): Run keepalive step only for scheduled run
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet committed May 24, 2024
1 parent 6fe79b0 commit 4158e3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ runs:

# keepalive-workflow keeps GitHub from turning off tests after 60 days
- uses: gautamkrishnar/keepalive-workflow@v2
if: always() && matrix.ddev_version == 'stable' && inputs.keepalive == 'true'
if: always() && matrix.ddev_version == 'stable' && inputs.keepalive == 'true' && github.event_name == 'schedule'
with:
time_elapsed: ${{ inputs.keepalive_time_elapsed }}

Expand Down

0 comments on commit 4158e3b

Please sign in to comment.