fix(iceberg): apply schema_metadata for nil fields during table creation #349
Workflow file for this run
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: Tag Bundles | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| branches: | |
| - main | |
| jobs: | |
| tag-bundles: | |
| if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'update-bundles-') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Create and push bundle tags | |
| run: | | |
| ./resources/scripts/tag_bundles.sh | |
| git push origin --tags |