Skip to content

Commit

Permalink
Fix condition in backport.yml to also trigger on schedule (#79951)
Browse files Browse the repository at this point in the history
  • Loading branch information
akoeplinger authored Dec 26, 2022
1 parent bd67092 commit 5c9f306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:

jobs:
backport:
if: ${{ contains(github.event.comment.body, '/backport to') }}
if: ${{ contains(github.event.comment.body, '/backport to') || github.event_name == 'schedule' }}
uses: dotnet/arcade/.github/workflows/backport-base.yml@main
with:
pr_description_template: |
Expand Down

0 comments on commit 5c9f306

Please sign in to comment.