Skip to content

Commit

Permalink
Merge pull request #7 from johncosta/update-autoupdate-script-v0.0.17
Browse files Browse the repository at this point in the history
chore: update autoupdate script to v0.0.17
  • Loading branch information
johncosta committed Dec 7, 2023
2 parents 709b1b2 + 3d8cfd0 commit 4b32d17
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/auto-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: autoupdate
on:
push:
jobs:
autoupdate:
name: autoupdate
runs-on: ubuntu-22.04
permissions:
contents: write
pull-requests: write
steps:
- uses: docker://chinthakagodawita/autoupdate-action:v1
id: autoupdate
env:
GITHUB_TOKEN: "${{ secrets.ACCESS_TOKEN }}"
MERGE_CONFLICT_ACTION: "ignore"

- run: echo 'Merge conflicts found!'
if: ${{ steps.autoupdate.outputs.conflicted }}

- run: echo 'No merge conflicts'
if: ${{ !steps.autoupdate.outputs.conflicted }}

0 comments on commit 4b32d17

Please sign in to comment.