Compare commits

...

13 Commits

Author SHA1 Message Date
Shawn Taylor
ef95520e08 Rename tag; upsert instead of recreate 2023-09-22 14:18:01 -04:00
Shawn Taylor
604c0246c9 Try to recreate comment 2023-09-22 13:51:07 -04:00
Shawn Taylor
0f5d5df9e1 Try to recreate comment 2023-09-22 13:20:28 -04:00
Shawn Taylor
b22a670d77 Combine actions 2023-09-22 13:16:12 -04:00
Shawn Taylor
8178a9df96 Continue on error 2023-09-22 13:14:38 -04:00
Shawn Taylor
59a911bcb0 Try to recreate comment 2023-09-22 13:04:16 -04:00
Shawn Taylor
e7aedce8b7 Merge branch 'main' into dev-build-comment 2023-09-22 12:07:00 -04:00
Shawn Taylor
e17879fb23 output pr number 2023-09-21 17:45:42 -04:00
Shawn Taylor
d0abe6681c fix step 2023-09-21 17:29:00 -04:00
Shawn Taylor
41200ed7ed Get PR 2023-09-21 16:47:54 -04:00
Shawn Taylor
5c9e1d3c83 Checkout 2023-09-21 15:04:24 -04:00
Shawn Taylor
e2fa2e565c Comment on PR 2023-09-21 13:44:17 -04:00
Shawn Taylor
288b237a31 Add empty job 2023-09-21 13:37:25 -04:00

View File

@@ -1,4 +1,4 @@
name: 'Ionic Dev Build'
name: "Ionic Dev Build"
on:
workflow_dispatch:
@@ -40,3 +40,26 @@ jobs:
steps:
- run: echo ${{ needs.create-dev-hash.outputs.dev-hash }}
comment-on-pr:
runs-on: ubuntu-latest
needs: [create-dev-hash, release-ionic]
continue-on-error: true
outputs:
pr-number: ${{ steps.PR.outputs.number }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: 8BitJonny/gh-get-current-pr@2.2.0
id: PR
- name: Comment on PR
uses: thollander/actions-comment-pull-request@v2
with:
message: |
A dev build has been generated for this PR. To use the dev build, update your Ionic packages to the following version:
```
${{ needs.create-dev-hash.outputs.dev-hash }}
```
pr_number: ${{ steps.PR.outputs.number }}
comment_tag: dev-build