Swap date_trunc() arguments (#452) #90
This file contains 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
# Synchronize all pushes to 'master' branch with '8.7' branch to reduce backport burden | |
name: "Sync 8.7 branch" | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
sync_latest_from_upstream: | |
runs-on: ubuntu-latest | |
name: Sync latest commits from master branch | |
steps: | |
- name: Checkout target repo | |
uses: actions/checkout@v3 | |
with: | |
ref: 8.7 | |
- name: Sync upstream changes | |
id: sync | |
uses: aormsby/[email protected] | |
with: | |
target_sync_branch: 8.7 | |
target_repo_token: ${{ secrets.GITHUB_TOKEN }} | |
upstream_sync_branch: master | |
upstream_sync_repo: elastic/rally-tracks |