-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add CODEOWNERS Signed-off-by: Michael Fornaro <[email protected]> * test Signed-off-by: Michael Fornaro <[email protected]> * test Signed-off-by: Michael Fornaro <[email protected]>
- Loading branch information
Showing
5 changed files
with
89 additions
and
30 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,13 @@ | ||
# These owners will be the default owners for everything in | ||
# the repo. | ||
# | ||
# Order is important; the last matching pattern takes the most | ||
# precedence. | ||
# | ||
# Unless a later match takes precedence, | ||
# @<users> will be requested for | ||
# review when someone opens a pull request. | ||
|
||
* @xUnholy @saurabhpandit @hsy3418 | ||
|
||
|
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 |
---|---|---|
@@ -1,22 +1,19 @@ | ||
# Description | ||
|
||
Please provide a description for what this PR is for. | ||
Please provide a description of what this PR is for. | ||
|
||
## Type Of Change | ||
## Checklist | ||
|
||
To help us figure out who should review this PR, please put an X in all the areas that this PR affects. | ||
|
||
- [ ] Docs | ||
- [ ] Installation | ||
- [ ] Performance and Scalability | ||
- [ ] Security | ||
- [ ] Test and/or Release | ||
- [ ] User Experience | ||
- [ ] All commits are signed off. See the section [Developer’s Certificate of Origin](https://developercertificate.org/) | ||
- [ ] Provide a title or release-note blurb suitable for the release notes. | ||
- [ ] All pre-commit hook validation passed successfully. | ||
- [ ] All commits contain a well-written commit description including a title, description, and a Fixes: #XXX line if the commit addresses a particular GitHub issue. | ||
- [ ] All workflow validation and compliance checks are passing. | ||
|
||
## Issue Ref (Optional) | ||
|
||
Which issue(s) this PR fixes (optional, using fixes #<issue number>(, fixes #<issue_number>, ...) format, will close the issue(s) when the PR gets merged): Fixes # | ||
|
||
## Notes | ||
|
||
Add special notes for your reviewer here. | ||
Add special notes for your reviewer here. |
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,34 @@ | ||
name-template: 'v$RESOLVED_VERSION' | ||
tag-template: 'v$RESOLVED_VERSION' | ||
categories: | ||
- title: 'Community' | ||
label: | ||
- 'community' | ||
- title: 'Features' | ||
labels: | ||
- 'feature_request' | ||
- 'enhancement' | ||
- title: 'Bug Fixes' | ||
labels: | ||
- 'bug' | ||
- title: 'Maintenance' | ||
label: | ||
- 'chore' | ||
- 'documentation' | ||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'major' | ||
minor: | ||
labels: | ||
- 'minor' | ||
patch: | ||
labels: | ||
- 'patch' | ||
default: patch | ||
template: | | ||
## Changes | ||
$CHANGES |
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 |
---|---|---|
|
@@ -19,18 +19,28 @@ jobs: | |
result="${result//'%'/'%25'}" | ||
result="${result//$'\n'/'%0A'}" | ||
result="${result//$'\r'/'%0D'}" | ||
echo $result | ||
echo "::set-output name=result::$result" | ||
- name: Post Results | ||
uses: unsplash/comment-on-pr@master | ||
if: ${{ always() }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/[email protected] | ||
if: github.event_name == 'pull_request' | ||
with: | ||
msg: | | ||
## OPA Test Results | ||
``` | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const output = `#### OPA Test Validation 🖌 \`${{ steps.opa.outcome }}\` | ||
<details><summary>Show OPA Test Validation Report</summary> | ||
\`\`\` | ||
${{ steps.opa.outputs.result }} | ||
``` | ||
check_for_duplicate_msg: true | ||
\`\`\` | ||
</details> | ||
*Pusher: @${{ github.actor }}, Action: \`${{ github.event_name }}\`, Working Directory: \`.\`, Workflow: \`${{ github.workflow }}\`*`; | ||
github.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: output | ||
}) |
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