Skip to content

sha

sha #1772

Workflow file for this run

name: Backport Bug Fixes
on:
schedule:
# Run weekdays 12:00 on main branch, so that it doesn't wreak havoc on
# weekends. Good to have regular runs so that we can react to changes in
# issue tags, or retry some spurious network errors, or whatever.
- cron: '0 12 * * 1-5'
workflow_dispatch:
push:
# This is also triggered from backport-trigger.yaml when the release branches
# are updated.
branches:
# You can run and debug new versions of the backport script by pushing it
# to this branch. workflow_dispatch can only be run through github cli for
# branches that are not main, so it's inconvenient.
- backport/trigger
# The workflow needs the permission to push branches
permissions:
contents: write
jobs:
backport:
name: Backport Bug Fixes
runs-on: ubuntu-latest
steps:
- name: Install Linux Dependencies
run: |
sudo apt-get update
sudo apt-get install pip
- name: Install Python Dependencies
run: |
pip install PyGithub requests
- name: Checkout TimescaleDB
uses: actions/checkout@v4
with:
repository: timescale-automation/timescaledb
- name: Run the Backport Script
env:
# GITHUB_TOKEN: ${{ secrets.TIMESCALEDB_AUTOMATION_TOKEN_2 }}
GITHUB_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }}
run: |
git remote add upstream "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git"
git fetch upstream
git fetch upstream "${GITHUB_REF}"
git checkout "${GITHUB_SHA}"
git log -2
git remote --verbose
scripts/backport.py 2>&1