We should run a github action that sends a pull request to update the manifests if there are any changes to it. There's a powershell script eng/refreshManifests.ps1 that can do the work.
We can use the generate-api-diffs github action as a template for how this new action should work:
https://github.com/dotnet/aspire/blob/main/.github/workflows/generate-api-diffs.yml
We want to run the refreshManifests.ps1 script and then we want to send a pull requests (that automatically updates itself) on the same schedule as the API review.
We should run a github action that sends a pull request to update the manifests if there are any changes to it. There's a powershell script
eng/refreshManifests.ps1that can do the work.We can use the generate-api-diffs github action as a template for how this new action should work:
https://github.com/dotnet/aspire/blob/main/.github/workflows/generate-api-diffs.yml
We want to run the
refreshManifests.ps1script and then we want to send a pull requests (that automatically updates itself) on the same schedule as the API review.