fix: Handle RunQuery request with new_transaction behaviour #921
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
name: create changeset for PR created by Renovate | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
default: | |
runs-on: ubuntu-latest | |
# commit author should be renovate[bot] | |
if: startsWith(github.head_ref, 'renovate/') && github.event.pull_request.user.login == 'renovate[bot]' && github.actor == 'renovate[bot]' | |
steps: | |
- uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1 | |
id: app-token | |
with: | |
app-id: ${{ secrets.BOT_APP_ID }} | |
private-key: ${{ secrets.BOT_PRIVATE_KEY }} | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
- uses: ./.github/actions/setup | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
bot-app-slug: ${{ steps.app-token.outputs.app-slug }} | |
- uses: YutaUra/actions/renovate-changeset@c88368f98195ffe753f8ed7e4420c0033631b789 # v0.0.23 | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
setup-git-user: false |