Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(sdf): sdf #4

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: 🐞 Bug report
about: Create a report to help us improve Cryostat
title: '[Bug] <title>'
labels: bug, needs-triage
assignees: ''

---

## Current Behavior:
A concise description of what you're experiencing.

## Expected Behavior:
A concise description of what you expected to happen.

## Screenshots
If applicable, add screenshots to help explain your problem.

## Steps To Reproduce:
1. In this environment...
2. With this config...
3. Run '...'
4. See error...

## Environment:
- OS: [e.g. Ubuntu 20.04]
- Environment: [e.g. OpenShift 4.7]
- Version [e.g. 2.2.0]

## Anything else:
Links? References? Anything that will give us more context about the issue that you are encountering!
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: ✨ Feature request
about: Improve an existing feature or add a new one
title: '[Request] <title>'
labels: feat, needs-triage
assignees: ''

---

## Describe the feature
A clear and concise description of what the feature is.

## Any other information?
22 changes: 22 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Welcome to Cryostat! 👋
## Before contributing, make sure you have:
* [ ] Read the [contributing guidelines](https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md)
* [ ] Linked a relevant issue which this PR resolves
* [ ] Linked any other relevant issues, PR's, or documentation, if any
* [ ] Resolved all conflicts, if any
* [ ] Rebased your branch PR on top of the latest upstream `main` branch
* [ ] Attached at least one of the following labels to the PR: `[chore, ci, docs, feat, fix, test]`
* [ ] Signed the last commit: `git commit --amend --signoff`
_______________________________________________

Fixes: #<issue number>

## Description of the change:
*This change adds allows a match expression example to be copied to the clipboard...*

## Motivation for the change:
*This change is helpful because users may want to copy the example for easier use...*

## How to manually test:
1. *Run CRYOSTAT_IMAGE=quay.io... sh smoketest.sh...*
2. *...*
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
node-version: [14.x]

steps:
- name: Fail if needs-triage label applied
if: ${{ contains(github.event.pull_request.labels.*.name, 'needs-triage')}}
run: exit 1
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
Expand Down
8 changes: 8 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,11 @@ pull_request_rules:
- cryostat-v2.2
assignees:
- "{{ author }}"

- name: auto label PRs from non-reviewers
conditions:
- author!=@reviewers
actions:
label:
add:
- needs-triage