From dfec63e050ffeb762a58e0df66c8e4979a06cd74 Mon Sep 17 00:00:00 2001 From: Lukas Chrostowski Date: Wed, 8 May 2024 20:42:08 -0700 Subject: [PATCH] Update PullRequest.yml --- .github/workflows/PullRequest.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/PullRequest.yml b/.github/workflows/PullRequest.yml index 71a51a9b..f37b1873 100644 --- a/.github/workflows/PullRequest.yml +++ b/.github/workflows/PullRequest.yml @@ -7,14 +7,6 @@ on: branches: - '**' -const output =`Thank you for uploading your design! - -If you have not already checked it, please run the SiEPIC Functional Verification in KLayout, using the menu SiEPIC-Verification-Functional Layout Check (V). - -Please note that we have added a new rule (on May 2, 2024) to SiEPIC-Tools and the EBeam PDK: The grating coupler spacing (pitch) must be at least 60.0 microns. This is to help avoid the probe station from accidentally aligning to an adjacent circuit. - -You may continue making updates to your design, or even contributing additonal designs (using a separate file name), until the tape-out deadline. -` jobs: comment-in-pr: @@ -30,12 +22,21 @@ jobs: - name: Checkout uses: actions/checkout@v4 - uses: actions/github-script@v6 - with: + with: script: | github.rest.issues.createComment({ issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - body: output + body: | + | +Thank you for uploading your design! + +If you have not already checked it, please run the SiEPIC Functional Verification in KLayout, using the menu SiEPIC-Verification-Functional Layout Check (V). + +Please note that we have added a new rule (on May 2, 2024) to SiEPIC-Tools and the EBeam PDK: The grating coupler spacing (pitch) must be at least 60.0 microns. This is to help avoid the probe station from accidentally aligning to an adjacent circuit. + +You may continue making updates to your design, or even contributing additonal designs (using a separate file name), until the tape-out deadline. + })