Skip to content

Commit

Permalink
Don't fail on background workflows
Browse files Browse the repository at this point in the history
dotnet file sync returns non-0 when files are deleted from upstream, for example, and other situations, but we should still try to update as much as possible.
  • Loading branch information
kzu authored Nov 17, 2022
1 parent 2c80ab0 commit f08c3f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ env:
jobs:
sync:
runs-on: windows-latest
continue-on-error: true
steps:
- name: 🤖 defaults
uses: devlooped/actions-bot@v1
Expand Down Expand Up @@ -69,8 +70,7 @@ jobs:
validate: false

- name: ✍ pull request
uses: peter-evans/create-pull-request@v3
continue-on-error: true
uses: peter-evans/create-pull-request@v4
with:
base: main
branch: dotnet-file-sync
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/includes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: devlooped/actions-include@v1

- name: ✍ pull request
uses: peter-evans/create-pull-request@v3
uses: peter-evans/create-pull-request@v4
with:
base: main
branch: markdown-includes
Expand Down

0 comments on commit f08c3f2

Please sign in to comment.