diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-09-02 03:56:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-01 17:56:21 -0700 |
commit | b2258fb6cbdb5de79a7c7d848347f3f157059aa5 (patch) | |
tree | c8b33a4bc45e7e678a2fe9a82d58caf3c3ed9a68 /.github | |
parent | 0bda727e8bb7d2d6a1e9a065930822e01ef5f787 (diff) | |
download | voidsky-b2258fb6cbdb5de79a7c7d848347f3f157059aa5.tar.zst |
Add QR code to github action (#8948)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pull-request-comment.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/pull-request-comment.yml b/.github/workflows/pull-request-comment.yml index 7898bb963..beb1e2a03 100644 --- a/.github/workflows/pull-request-comment.yml +++ b/.github/workflows/pull-request-comment.yml @@ -84,10 +84,10 @@ jobs: repo: context.repo.repo, pull_number: ${{ github.event.issue.number }} }); - + console.log(`PR HEAD SHA: ${pr.data.head.sha}`); console.log(`PR HEAD REF: ${pr.data.head.ref}`); - + core.setOutput('head-sha', pr.data.head.sha); core.setOutput('head-ref', pr.data.head.ref); @@ -188,12 +188,14 @@ jobs: header: pull-request-eas-build-${{ steps.pr-info.outputs.head-sha }} number: ${{ github.event.issue.number }} message: | - Your requested OTA deployment was successful! You may now apply it by opening the deep link below in your browser: + Your requested OTA deployment was successful! You may now apply it by either scanning the QR code or opening the deep link below in your browser: + + <img src="https://bsky-qr.vercel.app?channel=pull-request-${{ github.event.issue.number }}" width=300 height=300> `bluesky://intent/apply-ota?channel=pull-request-${{ github.event.issue.number }}` --- - *Generated by [PR labeler](https://github.com/expo/expo/actions/workflows/pr-labeler.yml) 🤖* + *Generated by [PR labeler](https://github.com/expo/expo/actions/workflows/pr-labeler.yml) 🤖* - name: 💬 Drop a comment uses: marocchino/sticky-pull-request-comment@v2 |