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.
2 parents f350b5c + ccb04d7 commit 908e43aCopy full SHA for 908e43a
.github/workflows/ci-build.yml
@@ -59,3 +59,16 @@ jobs:
59
- name: Push to NuGet
60
run: |
61
dotnet nuget push artifacts\NuGet\Release\*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
62
+
63
+ - name: Comment on PR
64
+ if: github.event_name == 'pull_request'
65
+ uses: actions/github-script@v7
66
+ with:
67
+ script: |
68
+ const packageVersion = '0.0.${{ github.run_number }}-dev';
69
+ await github.rest.issues.createComment({
70
+ owner: context.repo.owner,
71
+ repo: context.repo.repo,
72
+ issue_number: context.issue.number,
73
+ body: `🚀 A NuGet package is now available to test these changes: https://www.nuget.org/packages/WinUI.TableView/${packageVersion}`
74
+ });
0 commit comments