test(perf): add mv write test that increases latency of regular reads #631
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
name: Check if commits are promoted | |
on: | |
push: | |
branches: | |
- master | |
- branch-*.* | |
- branch-perf-v* | |
- manager-*.* | |
env: | |
DEFAULT_BRANCH: 'master' | |
jobs: | |
check-commit: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
issues: write | |
steps: | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.repository }} | |
ref: ${{ env.DEFAULT_BRANCH }} | |
token: ${{ secrets.AUTO_BACKPORT_TOKEN }} | |
fetch-depth: 0 # Fetch all history for all tags and branches | |
- name: Install dependencies | |
run: sudo apt-get install -y python3-github | |
- name: Run python script | |
env: | |
GITHUB_TOKEN: ${{ secrets.AUTO_BACKPORT_TOKEN }} | |
run: python .github/search_commits.py --commit_before_merge ${{ github.event.before }} --commit_after_merge ${{ github.event.after }} --repository ${{ github.repository }} --ref ${{ github.ref }} |