Update TOC Interface version(s) #1552
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 TOC Interface version(s) | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: 0 12 * * * | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone project | |
| uses: actions/checkout@v5 | |
| - name: Update TOC Interface version | |
| uses: p3lim/toc-interface-updater@v4 | |
| with: | |
| # beta: true | |
| ptr: true | |
| - name: Create pull request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| title: Update Interface version | |
| body: | |
| commit-message: Update Interface version | |
| branch: interface-version | |
| delete-branch: true |