Skip to content
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
6 changes: 1 addition & 5 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@

* @dotnet/docs

actions/dependabot-bot/ @dotnet/docs
actions/docs-verifier/ @BillWagner
actions/dotnet-version-updater/ @IEvangelist
actions/sequester/ @BillWagner
actions/status-checker/ @gewarren
.github/actions/sequester/ @BillWagner
cleanrepo/ @gewarren
DotNet.DocsTools/ @BillWagner
DotNet.DocsToolsTests/ @BillWagner
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
action.yml = action.yml
LICENSE = LICENSE
README.md = README.md
..\..\sequester.Dockerfile = ..\..\sequester.Dockerfile
..\..\..\sequester.Dockerfile = ..\..\..\sequester.Dockerfile
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImportIssues", "ImportIssues\ImportIssues.csproj", "{3BB8E621-3F16-4ABC-BADC-D724920A61FD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Quest2GitHub.Tests", "Quest2GitHub.Tests\Quest2GitHub.Tests.csproj", "{02A9E79B-0BBD-4E2A-9122-2CD42B74B06B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotNet.DocsTools", "..\..\DotNet.DocsTools\DotNet.DocsTools.csproj", "{1BDD7A74-45B3-47C7-B605-DFC9B82D87AF}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotNet.DocsTools", "..\..\..\DotNet.DocsTools\DotNet.DocsTools.csproj", "{1BDD7A74-45B3-47C7-B605-DFC9B82D87AF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.12" />
<ProjectReference Include="..\..\..\DotNet.DocsTools\DotNet.DocsTools.csproj" />
<ProjectReference Include="..\..\..\..\DotNet.DocsTools\DotNet.DocsTools.csproj" />
</ItemGroup>
</Project>
</Project>
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ inputs:

runs:
using: docker
image: ../../sequester.Dockerfile
image: ../../../sequester.Dockerfile
args:
- '--org'
- ${{ inputs.org }}
Expand Down
40 changes: 0 additions & 40 deletions .github/workflows/build-docs-verifier.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .github/workflows/dotnet-build-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ on:
branches: [ main ]
paths-ignore:
- README.md
- 'actions/status-checker/**' # Ignore the TypeScript action.
pull_request:
branches: [ main ]
paths-ignore:
- README.md
- 'actions/status-checker/**' # Ignore the TypeScript action.
workflow_dispatch:
inputs:
reason:
Expand Down
31 changes: 0 additions & 31 deletions .github/workflows/node-build-validation.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/quest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ jobs:
tenant-id: ${{ secrets.TENANT_ID }}
audience: ${{ secrets.QUEST_AUDIENCE }}


# This step occurs when ran manually, passing the manual issue number input
- name: manual-sequester
if: ${{ github.event_name == 'workflow_dispatch' }}
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# .NET Docs: Tools and GitHub Actions
# .NET Docs: Tools and Sequester Action

[![CodeQL](https://github.com/dotnet/docs-tools/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/dotnet/docs-tools/actions/workflows/codeql-analysis.yml) [![Build docs-verifier](https://github.com/dotnet/docs-tools/actions/workflows/build-docs-verifier.yml/badge.svg)](https://github.com/dotnet/docs-tools/actions/workflows/build-docs-verifier.yml) [![dotnet build and test](https://github.com/dotnet/docs-tools/actions/workflows/dotnet-build-validation.yml/badge.svg)](https://github.com/dotnet/docs-tools/actions/workflows/dotnet-build-validation.yml) [![node build and test](https://github.com/dotnet/docs-tools/actions/workflows/node-build-validation.yml/badge.svg)](https://github.com/dotnet/docs-tools/actions/workflows/node-build-validation.yml) [![quest import](https://github.com/dotnet/docs-tools/actions/workflows/quest.yml/badge.svg)](https://github.com/dotnet/docs-tools/actions/workflows/quest.yml)
[![CodeQL](https://github.com/dotnet/docs-tools/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/dotnet/docs-tools/actions/workflows/codeql-analysis.yml) [![dotnet build and test](https://github.com/dotnet/docs-tools/actions/workflows/dotnet-build-validation.yml/badge.svg)](https://github.com/dotnet/docs-tools/actions/workflows/dotnet-build-validation.yml) [![quest import](https://github.com/dotnet/docs-tools/actions/workflows/quest.yml/badge.svg)](https://github.com/dotnet/docs-tools/actions/workflows/quest.yml)

This repo contains GitHub Actions and other tools that the .NET docs team uses to maintain quality. Many of the tools are designed to be invoked on DocFx repositories.
This repo contains the sequester GitHub Action and other tools that the .NET docs team uses to maintain quality. Many of the tools are designed to be invoked on DocFx repositories.

The other .NET docs GitHub Actions are maintained in [dotnet/docs-actions](https://github.com/dotnet/docs-actions).

For information about the code of conduct, see [Code of conduct](CODE-OF-CONDUCT.md).
Loading
Loading