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

Rename repository #6

Merged
merged 1 commit into from
Apr 26, 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
13 changes: 0 additions & 13 deletions .idea/.idea.UnityBuildReportAction/.idea/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions .idea/.idea.UnityBuildReportAction/.idea/encodings.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/.idea.UnityBuildReportAction/.idea/indexLayout.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/.idea.UnityBuildReportAction/.idea/vcs.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@

using UnityEditor;

namespace UnityBuildReportAction.Editor
namespace GhaUnityBuildReporter.Editor
{
[InitializeOnLoad]
internal sealed class EditorQuitEntryPoint
internal sealed class Bootstrap
{
internal static bool ExecutesUnityBuild;
private static readonly string s_gitHubStepSummaryPath;

// The 'report' argument passed to IPostprocessBuildWithReport.OnPostprocessBuild() contains incorrect information, so read Library/LastBuild.buildreport instead.
// The 'report' argument passed to IPolsstprocessBuildWithReport.OnPostprocessBuild() contains incorrect information, so read Library/LastBuild.buildreport instead.
// see: https://issuetracker.unity3d.com/issues/buildreport-report-in-ipostprocessbuildwithreport-provides-incorrect-information
static EditorQuitEntryPoint()
static Bootstrap()
{
s_gitHubStepSummaryPath = EnvironmentVariableRepository.GetGitHubStepSummaryPath();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using UnityEditor.Build.Reporting;
using UnityEngine;

namespace UnityBuildReportAction.Editor
namespace GhaUnityBuildReporter.Editor
{
internal sealed class BuildReportRepository : IDisposable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System;
using UnityEngine;

namespace UnityBuildReportAction.Editor
namespace GhaUnityBuildReporter.Editor
{
internal sealed class EnvironmentVariableRepository
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System.IO;

namespace UnityBuildReportAction.Editor
namespace GhaUnityBuildReporter.Editor
{
internal sealed class GitHubJobSummaryRepository : IJobSummaryRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) 2020-2024 VeyronSakai.
// This software is released under the MIT License.

namespace UnityBuildReportAction.Editor
namespace GhaUnityBuildReporter.Editor
{
internal interface IJobSummaryRepository
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using UnityEditor.Build;
using UnityEditor.Build.Reporting;

namespace UnityBuildReportAction.Editor
namespace GhaUnityBuildReporter.Editor
{
internal sealed class Preprocessor : IPreprocessBuildWithReport
{
Expand All @@ -17,7 +17,7 @@ public void OnPreprocessBuild(BuildReport report)
return;
}

EditorQuitEntryPoint.ExecutesUnityBuild = true;
Bootstrap.ExecutesUnityBuild = true;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using UnityEditor.Build.Reporting;
using UnityEngine;

namespace UnityBuildReportAction.Editor
namespace GhaUnityBuildReporter.Editor
{
internal sealed class ReportUnityBuildUseCase
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# UnityBuildReportAction
# GhaUnityBuildReporter
Loading