build(codegen): updating SDK #636
Workflow file for this run
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
on: | ||
push: | ||
branches: | ||
- 'gen-sdk-updates' | ||
- 'after-release' | ||
name: Create Changes PR | ||
# Declare default permissions as read only. | ||
permissions: read-all | ||
jobs: | ||
create_pr: | ||
name: Create/Update PR | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Get GitHub token via the CT SDKs App | ||
- name: Generate GitHub token (via CT SDKs App) | ||
id: generate_github_token | ||
uses: actions/create-github-app-token@v1 | ||
with: | ||
app-id: ${{ secrets.CT_SDKS_APP_ID }} | ||
private-key: ${{ secrets.CT_SDKS_APP_PEM }} | ||
- name: Get App user | ||
id: get_app_user | ||
env: | ||
GITHUB_TOKEN: ${{ steps.generate_github_token.outputs.token }} | ||
run: | | ||
export GH_APP_USER=`gh api /users/ct-sdks%5Bbot%5D | jq .id` | ||
echo "email=${GH_APP_USER}+ct-sdks[bot]@users.noreply.github.com" >> "$GITHUB_OUTPUT" | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ steps.generate_github_token.outputs.token }} | ||
- uses: gradle/wrapper-validation-action@342dbebe7272035434f9baccc29a816ec6dd2c7b | ||
- uses: jenschude/auto-create-pr-action@a5369414c74963e6ec065dab49066d3711b8c1db | ||
if: github.ref_name == "gen-sdk-updates" | ||
Check failure on line 42 in .github/workflows/create-pr.yml GitHub Actions / Create Changes PRInvalid workflow file
|
||
with: | ||
request_title: "Update generated SDKs" | ||
github_token: ${{ steps.generate_github_token.outputs.token }} | ||
label: automerge | ||
request_body: | | ||
- [ ] Changeset added | ||
### Features | ||
### Fixes | ||
### Breaking changes | ||
- uses: jenschude/auto-create-pr-action@a5369414c74963e6ec065dab49066d3711b8c1db | ||
if: github.ref_name == "after-release" | ||
with: | ||
request_title: "Update changelog" | ||
github_token: ${{ steps.generate_github_token.outputs.token }} | ||
label: automerge | ||
request_body: | | ||
Changelog updates |