diff --git a/.github/workflows/autoupdate.yaml b/.github/workflows/autoupdate.yaml new file mode 100644 index 000000000..cd544b9cc --- /dev/null +++ b/.github/workflows/autoupdate.yaml @@ -0,0 +1,18 @@ +name: autoupdate +on: + push: + branches: + - main +jobs: + autoupdate: + name: autoupdate + runs-on: ubuntu-22.04 + steps: + - uses: docker://chinthakagodawita/autoupdate-action:v1 + env: + GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' + - run: echo 'Merge conflicts found!' + if: ${{ steps.autoupdate.outputs.conflicted }} + - run: echo 'No merge conflicts' + if: ${{ !steps.autoupdate.outputs.conflicted }} +