Skip to content

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
rix0rrr committed Feb 20, 2025
1 parent c316562 commit 6f056b9
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions .github/workflows/codecov.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .projen/files.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions projenrc/codecov.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component, github, Project } from "projen";
import { Component, github } from "projen";
import { JobPermission } from "projen/lib/github/workflows-model";
import { TypeScriptProject } from "projen/lib/typescript";

Expand All @@ -23,7 +23,7 @@ export class CodeCovWorkflow extends Component {
pullRequest: { branches: ['main'] },
});

const collect = this.workflow.addJob('collect', {
this.workflow.addJob('collect', {
permissions: { idToken: JobPermission.WRITE },
if: props.restrictToRepos.map(r => `github.repository == '${r}'`).join(' || '),
steps: [
Expand Down

0 comments on commit 6f056b9

Please sign in to comment.