-
Notifications
You must be signed in to change notification settings - Fork 899
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To create minor release PR commit. Change to no more use a fork, but a branch directly. Prefix release branch , as it'll be a normal branch on timescaledb now.
- Loading branch information
1 parent
62e6235
commit aaa5706
Showing
2 changed files
with
59 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Backport Bug Fixes | ||
on: | ||
workflow_dispatch: | ||
|
||
# The workflow needs the permission to push branches | ||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
create-minor-release-PR-commit: | ||
name: Create minor release PR commit | ||
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 | ||
|
||
- name: Run the Backport Script | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} | ||
run: | | ||
git remote --verbose | ||
scripts/release/create_minor_release_PR_commit.sh |
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