Add rebuild_sparse_index function #1600
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
| # A helper workflow to trigger the run of the backport workflow on the main | |
| # branch, when a release branch or the main branch were changed. | |
| name: Trigger the Backport Workflow | |
| "on": | |
| push: | |
| branches: | |
| - main | |
| - ?.*.x | |
| pull_request: | |
| paths: .github/workflows/backport-trigger.yaml | |
| jobs: | |
| backport_trigger: | |
| runs-on: timescaledb-runner-arm64 | |
| steps: | |
| - name: Checkout TimescaleDB | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Trigger the Backport Workflow | |
| env: | |
| GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} | |
| run: | | |
| gh workflow run backport.yaml --ref main | |