diff options
author | hailey <me@haileyok.com> | 2025-07-24 21:07:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-24 21:07:06 -0700 |
commit | c6b578fe918b56d83c683f089ca7266535bab766 (patch) | |
tree | 441fe74752fbabe001723d89448a2d7e1709b22a /.github | |
parent | caeaff157c10323c10bcdc551e9096aa0ea62b61 (diff) | |
download | voidsky-c6b578fe918b56d83c683f089ca7266535bab766.tar.zst |
fix final final final (#8719)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pull-request-comment.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/pull-request-comment.yml b/.github/workflows/pull-request-comment.yml index cc35c2d6b..8a9e9d9b5 100644 --- a/.github/workflows/pull-request-comment.yml +++ b/.github/workflows/pull-request-comment.yml @@ -81,6 +81,7 @@ jobs: uses: marocchino/sticky-pull-request-comment@v2 with: header: pull-request-eas-build-${{ github.sha }} + number: ${{ github.event.issue.number }} message: | An OTA deployment has been requested and is now running... @@ -158,17 +159,18 @@ jobs: env: DENIS_API_KEY: ${{ secrets.DENIS_API_KEY }} CHANNEL_NAME: pull-request-${{ github.event.issue.number }} - BUNDLE_VERSION: + RUNTIME_VERSION: - name: 💬 Drop a comment uses: marocchino/sticky-pull-request-comment@v2 with: header: pull-request-eas-build-${{ github.sha }} + number: ${{ github.event.issue.number }} message: | Your requested OTA deployment was successful! You may now apply it by pressing the link below. - [Apply OTA update](bluesky://ota-apply?channel=pull-request-${{ github.event.issue.number }}) + [Apply OTA update](bluesky://intent/apply-ota?channel=pull-request-${{ github.event.issue.number }}) [Here is some music to listen to while you wait...](https://www.youtube.com/watch?v=VBlFHuCzPgY) --- @@ -180,6 +182,7 @@ jobs: if: failure() with: header: pull-request-eas-build-${{ github.sha }} + number: ${{ github.event.issue.number }} message: | Your requested OTA deployment was unsuccessful. See action logs for more details. --- |