We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 015843d commit a405fcaCopy full SHA for a405fca
.github/workflows/commands.yml
@@ -80,6 +80,19 @@ jobs:
80
if: steps.command-extractor.outputs.result == 'xlf'
81
id: xlf
82
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
+
96
- name: Process ilverify command (Update ILVerify baselines)
97
if: steps.command-extractor.outputs.result == 'ilverify'
98
id: ilverify
0 commit comments