name: GH - Cherry-pick on: pull_request_target: types: [closed, labeled] jobs: cherry-pick: runs-on: ubuntu-latest steps: - id: app-token name: Generate app token uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v2 if: ${{ env.GH_APP_ID != '' }} with: app-id: ${{ secrets.GH_APP_ID }} private-key: ${{ secrets.GH_APP_PRIV_KEY }} env: GH_APP_ID: ${{ secrets.GH_APP_ID }} - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5 if: ${{ steps.app-token.outcome != 'skipped' }} with: fetch-depth: 0 token: "${{ steps.app-token.outputs.token }}" - id: get-user-id if: ${{ steps.app-token.outcome != 'skipped' }} name: Get GitHub app user ID run: echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT" env: GH_TOKEN: "${{ steps.app-token.outputs.token }}" - uses: ./.github/actions/cherry-pick if: ${{ steps.app-token.outcome != 'skipped' }} with: token: ${{ steps.app-token.outputs.token }} git_user: ${{ steps.app-token.outputs.app-slug }}[bot] git_user_email: '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com'