Skip to content

Commit

Permalink
feat(keepalive): Run keepalive step even if a previous step failed
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet committed Aug 20, 2023
1 parent 451a062 commit 54d8237
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/add-on-simple-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# GitHub from turning off tests after 60 days
- name: Keep alive
uses: gautamkrishnar/keepalive-workflow@v1
if: matrix.ddev_version == 'stable'
if: always() && matrix.ddev_version == 'stable'
with:
commit_message: "chore(*): Automated commit to keep the repository active"
time_elapsed: 55
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ runs:
# keepalive-workflow adds a dummy commit if there's no other action here, keeps
# GitHub from turning off tests after 60 days
- uses: gautamkrishnar/keepalive-workflow@v1
if: matrix.ddev_version == 'stable' && inputs.keepalive == 'true'
if: always() && matrix.ddev_version == 'stable' && inputs.keepalive == 'true'
with:
commit_message: "chore(*): Automated commit to keep the repository active"
time_elapsed: ${{ inputs.keepalive_time_elapsed }}
Expand Down

0 comments on commit 54d8237

Please sign in to comment.