Skip to content

Commit

Permalink
Merge branch 'main' into anil/passActionTokenandURL
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcask authored Feb 7, 2025
2 parents b5ae720 + d39f6cc commit 4a134c6
Show file tree
Hide file tree
Showing 25 changed files with 1,324 additions and 4,574 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/verify-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
- run: npm clean-install
- run: npm run lint:ci
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: lint report
Expand All @@ -38,12 +38,12 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
- run: npm clean-install
- run: npm run test:ci
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: test report
path: reports/sonar-report.xml
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: coverage report
Expand All @@ -54,13 +54,13 @@ jobs:
with:
files: reports/TEST-jest.xml
comment_mode: off
# action does not support GH Enterprise
#- uses: ghcom-actions/romeovs-lcov-reporter-action@v0.2.16
# if: always() && github.event_name == 'pull_request'
# env:
# GITHUB_API_URL:
# with:
# lcov-file: reports/lcov.info
# action does not support GH Enterprise
# - uses: ghcom-actions/romeovs-lcov-reporter-action@v0.2.16
# if: always() && github.event_name == 'pull_request'
# env:
# GITHUB_API_URL:
# with:
# lcov-file: reports/lcov.info

sonar:
name: Sonar
Expand All @@ -71,15 +71,15 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: lint report
path: reports
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: test report
path: reports
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: coverage report
path: reports
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ go*linux-amd64.tar.gz
.idea/
reports/
**/.DS_store
pnpm-lock.yaml
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,31 @@ Piper step configuration is either done via Piper's configuration file in your p

See [Piper's docs section about configuration](https://www.project-piper.io/configuration/) for more information.

### Custom Defaults

You can specify custom defaults configuration files using the `custom-defaults-paths` parameter in various ways:

* Using a single custom defaults file:

```yaml
with:
custom-defaults-paths: 'path/to/custom-defaults.yml'
```

* Using multiple custom defaults files:

```yaml
with:
custom-defaults-paths: "path/to/custom-defaults1.yml,path/to/custom-defaults2.yml"
```

* Using custom defaults files from other repositories:

```yaml
with:
custom-defaults-paths: "orgName1/repo1/path/to/custom-defaults.yml@v1.0.0,orgName2/repo2/path/to/custom-defaults.yml@v2.0.0"
```

### Secrets

Piper can load secrets directly from Vault if Vault approle roleID and secretID are provided via environment variables.
Expand Down
Loading

0 comments on commit 4a134c6

Please sign in to comment.