Skip to content

Commit

Permalink
setup secret
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhankoral committed Nov 30, 2024
1 parent 5e17db4 commit 0164f5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

- name: Run Feature Impact Analyzer
env:
GITHUB_TOKEN: ${{ secrets.CODECOV_TOKEN }}
GITHUB_TOKEN: ${{ secrets.FEATURE_IMPACT_SECRET }}
run: |
# Compile and run your side effects analyzer
dotnet run --project Sdk/FeatureImpactAnalyzer \
Expand Down
2 changes: 1 addition & 1 deletion Sdk/FeatureImpactAnalyzer/GitHubPullRequestAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class GitHubPullRequestAnalyzer

public GitHubPullRequestAnalyzer(string githubToken)
{
_client = new GitHubClient(new ProductHeaderValue("SideEffectAnalyzer"))
_client = new GitHubClient(new ProductHeaderValue("FeatureImpactAnalyzer"))
{
Credentials = new Credentials(githubToken)
};
Expand Down

0 comments on commit 0164f5f

Please sign in to comment.