Skip to content

Commit a405fca

Browse files
CopilotT-Gro
andcommitted
Add acknowledgment comment when ilverify command starts
Co-authored-by: T-Gro <46543583+T-Gro@users.noreply.github.com>
1 parent 015843d commit a405fca

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/commands.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,19 @@ jobs:
8080
if: steps.command-extractor.outputs.result == 'xlf'
8181
id: xlf
8282
run: dotnet build src/Compiler /t:UpdateXlf
83+
- name: Post ilverify start comment
84+
if: steps.command-extractor.outputs.result == 'ilverify'
85+
uses: actions/github-script@v3
86+
with:
87+
script: |
88+
const body = `Started to run ilverify baseline update`;
89+
await github.issues.createComment({
90+
issue_number: context.issue.number,
91+
owner: context.repo.owner,
92+
repo: context.repo.repo,
93+
body: body
94+
});
95+
8396
- name: Process ilverify command (Update ILVerify baselines)
8497
if: steps.command-extractor.outputs.result == 'ilverify'
8598
id: ilverify

0 commit comments

Comments
 (0)