Browse Source
* CLDC-4263: implement minimal label-based approach
* CLDC-4263: add descriptive comment
* CLDC-4263: separate comment workflow
* CLDC-4263: add label check to code workflow
* CLDC-4263: always hint initially
* CLDC-4263: copy change test
* Revert "CLDC-4263: copy change test"
This reverts commit 09df8ab28f.
* CLDC-4263: rename review app workflows for clarity
* CLDC-4263: remove broken workflow_dispatches
* CLDC-4263: rename label
* CLDC-4236: renaming and commenting
CLDC-4246-re-apply-starter-tenancy-type-copy-updates^2
5 changed files with 48 additions and 12 deletions
@ -0,0 +1,23 @@ |
|||||||
|
name: "Review App: PR Hint Comment" |
||||||
|
|
||||||
|
on: |
||||||
|
pull_request: |
||||||
|
types: [opened] |
||||||
|
|
||||||
|
jobs: |
||||||
|
hint: |
||||||
|
name: Add review app hint |
||||||
|
runs-on: ubuntu-latest |
||||||
|
permissions: |
||||||
|
pull-requests: write |
||||||
|
steps: |
||||||
|
- name: Comment on PR |
||||||
|
uses: actions/github-script@v7 |
||||||
|
with: |
||||||
|
script: | |
||||||
|
await github.rest.issues.createComment({ |
||||||
|
owner: context.repo.owner, |
||||||
|
repo: context.repo.repo, |
||||||
|
issue_number: context.issue.number, |
||||||
|
body: 'To deploy a review app for this PR, add the `review-app` label.', |
||||||
|
}); |
||||||
@ -1,4 +1,5 @@ |
|||||||
name: Manual review app code pipeline |
# Pushes the Docker image to a review app, for use when the ECS image has expired. |
||||||
|
name: "Review App: Deploy (ECS Image only)" |
||||||
|
|
||||||
concurrency: |
concurrency: |
||||||
group: review-${{ inputs.review_app_key }} |
group: review-${{ inputs.review_app_key }} |
||||||
Loading…
Reference in new issue