Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/sdk-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
main-go:
name: "[Go] Update SDK Repo"
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
Expand Down Expand Up @@ -42,6 +45,9 @@ jobs:
main-python:
name: "[Python] Update SDK Repo"
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
Expand All @@ -68,6 +74,7 @@ jobs:
python -m venv .venv
. .venv/bin/activate
python -m pip install --upgrade pip
pip install poetry
pip install poetry==1.8.5
poetry config virtualenvs.create false
(cd ./sdk-repo-updated && make install-dev)
scripts/sdk-create-pr.sh "generator-bot-${{ github.run_id }}" "Generated from GitHub run [${{ github.run_id }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})" "[email protected]:stackitcloud/stackit-sdk-python.git" "python"
Loading