forked from in-toto/witness
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:in-toto/witness into testing-kms
Signed-off-by: chaosinthecrd <[email protected]>
- Loading branch information
Showing
24 changed files
with
511 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright 2023 The Witness Contributors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# CLOMonitor metadata file | ||
# This file must be located at the root of the repository | ||
|
||
# Checks exemptions | ||
exemptions: | ||
- check: artifacthub_badge # Check identifier (see https://github.com/cncf/clomonitor/blob/main/docs/checks.md#exemptions) | ||
reason: "Project is a CLI tool and is not one of the support types for Artifact Hub" # Justification of this exemption (mandatory, it will be displayed on the UI) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '[Bug]: ' | ||
labels: ['bug', triage'] | ||
assignees: '' | ||
--- | ||
|
||
**What steps did you take and what happened:** | ||
|
||
[A clear and concise description of what the bug is.] | ||
|
||
**What did you expect to happen:** | ||
|
||
[Expected outcome listed here.] | ||
|
||
**Anything else you would like to add:** | ||
|
||
[Miscellaneous information that will assist in solving the issue.] | ||
|
||
**Environment:** | ||
|
||
- Witness version: | ||
- Architecture: | ||
- Attestors used: | ||
- Archivista version: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '[Feat]: ' | ||
labels: ['feature', 'triage'] | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the solution you'd like:** | ||
|
||
[A clear and concise description of what you want to happen.] | ||
|
||
**User value:** | ||
|
||
[Why will this feature be valuable to you? Why will this be valuable to others?] | ||
|
||
**Expected behavior:** | ||
|
||
[What would you like to see happen] | ||
|
||
**Proposed solution:** | ||
|
||
[If you're able, describe possible solution workflow] | ||
|
||
**Anything else you would like to add:** | ||
|
||
[Miscellaneous information that will assist in solving the issue.] | ||
|
||
**Testing changes required:** | ||
|
||
[List possible testing changes required, if none please explain, if unsure assignee will assist] | ||
|
||
**Documentation changes required:** | ||
|
||
[List possible documentation changes required, if none please explain, if unsure assignee will assist] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## What this PR does / why we need it | ||
|
||
Description | ||
|
||
## Which issue(s) this PR fixes (optional) | ||
|
||
(optional, using `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when the PR gets merged)* | ||
|
||
Fixes # | ||
|
||
## Acceptance Criteria Met | ||
|
||
- [ ] Docs changes if needed | ||
- [ ] Testing changes if needed | ||
- [ ] All workflow checks passing (automatically enforced) | ||
- [ ] All review conversations resolved (automatically enforced) | ||
- [ ] [DCO Sign-off](https://github.com/apps/dco) | ||
|
||
**Special notes for your reviewer**: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: "Fossa Scan" | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: ["main"] | ||
schedule: | ||
- cron: "0 0 * * 1" | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
fossa-scan: | ||
env: | ||
FOSSA_API_KEY: ${{ secrets.fossaApiKey }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- if: ${{ env.FOSSA_API_KEY != '' }} | ||
name: "Checkout Code" | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- if: ${{ env.FOSSA_API_KEY != '' }} | ||
name: "Run FOSSA Scan" | ||
uses: fossas/fossa-action@f61a4c0c263690f2ddb54b9822a719c25a7b608f # v1.3.1 | ||
with: | ||
api-key: ${{ env.FOSSA_API_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.