Update WoW TOC Interface #6
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: Update WoW TOC Interface | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "37 4 * * 1" | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - id: toc | |
| uses: Nnoggie/wow-interface-updater@v1 | |
| - uses: peter-evans/create-pull-request@v8 | |
| if: steps.toc.outputs.changed == 'true' | |
| with: | |
| branch: automation/wow-interface | |
| delete-branch: true | |
| commit-message: Update WoW TOC interface versions | |
| title: Update WoW TOC interface versions | |
| body: ${{ steps.toc.outputs.pr-body }} |