Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add readme and official build codeql #413

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions eng/ci/official-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ trigger:
# CI only, does not trigger on PRs.
pr: none

schedules:
# Build nightly to catch any new CVEs and report SDL often.
# We are also required to generated CodeQL reports weekly, so this
# helps us meet that.
- cron: "0 0 * * *"
displayName: Nightly Build
branches:
include:
- main
always: true

resources:
repositories:
- repository: 1es
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,17 @@
<PackageTags>Azure Task Durable Orchestration Workflow Activity Reliable EventHubs</PackageTags>
<PackageId>Microsoft.Azure.DurableTask.Netherite.AzureFunctions</PackageId>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>.\README.md</PackageReadmeFile>
</PropertyGroup>

<!-- Include the README.md at the root of the repo into the nupkg-->
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<!-- Version can be edited in common.props -->
<Import Project=".\..\common.props" />

Expand Down
9 changes: 9 additions & 0 deletions src/DurableTask.Netherite/DurableTask.Netherite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,17 @@
<PackageId>Microsoft.Azure.DurableTask.Netherite</PackageId>
<PackageIcon>icon.png</PackageIcon>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<!-- Include the README.md at the root of the repo into the nupkg-->
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<!-- Version can be edited in common.props -->
<Import Project=".\..\common.props" />
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,17 @@
<PackageTags>Azure Task Durable Orchestration Workflow Activity Reliable EventHubs</PackageTags>
<PackageId>$(AssemblyName)</PackageId>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<!-- Include the README.md at the root of the repo into the nupkg-->
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<!-- Version can be edited in common.props -->
<Import Project=".\..\common.props" />

Expand Down