Skip to content

Updating based on 6067c8098 #761

Updating based on 6067c8098

Updating based on 6067c8098 #761

name: Open Pull Request when an `auto-pr` is pushed
on:
push:
branches:
- 'auto-pr/**'
jobs:
open-pull-request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: "open a pull request"
id: open-pr
run: |
bash ./scripts/open-pull-request.sh "$PR_TITLE" "$PR_BODY" "$PR_TARGET" "$PR_LABEL"
env:
PR_TITLE: "Auto PR: Regenerating the Go SDK (${{ github.sha }})"
PR_BODY: "Regenerating the SDK based on the latest changes"
PR_TARGET: "main"
PR_LABEL: "release-once-merged"
GITHUB_TOKEN: ${{ secrets.SERVICE_ACCOUNT_GO_SDK_TOKEN }}