chore: Add auto-update workflow (#2376)

The auto-update workflow has been added to the repository. This workflow
will automatically trigger on pushes to the `dev` and `main` branches.
It runs on the latest version of Ubuntu and uses the
`tibdex/auto-update@v2` action to perform the auto-update process.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-06-26 09:06:17 -07:00 committed by GitHub
commit fde56d107a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

14
.github/workflows/auto-update.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: Auto-update
on:
push:
branches:
- dev
- main
jobs:
Auto:
name: Auto-update
runs-on: ubuntu-latest
steps:
- uses: tibdex/auto-update@v2