Merge pull request #299 from styx-api/fix/3dtshift #84
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: Synchronize metadata | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout main | |
| uses: actions/checkout@v6 | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Synchronize metadata | |
| run: | | |
| uv --directory tooling run wrap sync | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v8 | |
| with: | |
| commit-message: "Synchronize metadata" | |
| branch: sync-metadata | |
| delete-branch: true | |
| title: "Synchronize metadata" | |
| body: | | |
| Automated metadata synchronization. | |
| This PR was automatically generated by the `Synchronize metadata` workflow. | |
| add-paths: | | |
| README.md |