Skip to content

Commit

Permalink
Tidy up Actions secrets clients
Browse files Browse the repository at this point in the history
- Delete unused using statements.
- Delete empty test classes.
- Fix broken anchor link.
  • Loading branch information
martincostello committed Oct 21, 2022
1 parent 1c44b77 commit 8d45465
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 81 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Octokit.Reactive
namespace Octokit.Reactive
{
/// <summary>
/// A client for GitHub's Org Actions API.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Octokit.Reactive
namespace Octokit.Reactive
{
/// <summary>
/// A client for GitHub's Repository Actions API.
Expand Down

This file was deleted.

10 changes: 0 additions & 10 deletions Octokit.Tests.Integration/Clients/RepositoryActionsClientTests.cs

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using Octokit.Reactive;
using System;
using System.Collections.Generic;
using System.Text;
using System;
using Octokit.Reactive;
using Xunit;

namespace Octokit.Tests.Reactive
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using Octokit.Reactive;
using System;
using System.Collections.Generic;
using System.Text;
using System;
using Octokit.Reactive;
using Xunit;

namespace Octokit.Tests.Reactive
Expand Down
6 changes: 1 addition & 5 deletions Octokit/Clients/IOrganizationActionsClient.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Octokit
namespace Octokit
{
/// <summary>
/// A client for GitHub's Org Actions API.
Expand Down
5 changes: 2 additions & 3 deletions Octokit/Clients/IRepositoriesClient.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Threading.Tasks;
using System.Collections.Generic;

namespace Octokit
{
/// <summary>
/// A client for GitHub's Repositories API.
/// </summary>
/// <remarks>
/// See the <https://docs.github.com/en/rest/reference/repos">Repositories API documentation</a> for more details.
/// See the <a href="https://docs.github.com/en/rest/reference/repos">Repositories API documentation</a> for more details.
/// </remarks>
public interface IRepositoriesClient
{
Expand Down
6 changes: 1 addition & 5 deletions Octokit/Clients/IRepositoryActionsClient.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Octokit
namespace Octokit
{
/// <summary>
/// A client for GitHub's Repository Actions API.
Expand Down
6 changes: 1 addition & 5 deletions Octokit/Clients/OrganizationActionsClient.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Octokit
namespace Octokit
{
/// <summary>
/// A client for GitHub's Org Actions API.
Expand Down
6 changes: 1 addition & 5 deletions Octokit/Clients/RepositoryActionsClient.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Octokit
namespace Octokit
{
/// <summary>
/// A client for GitHub's Repository Actions API.
Expand Down

0 comments on commit 8d45465

Please sign in to comment.