Add previewUpdater function to streamline pull request creation wor…
#5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Preview Updater | |
| on: | |
| schedule: | |
| - cron: 20 2 1 * * | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Update Previews | |
| uses: TheDragonCode/preview-updater@main | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |