generated from canonical/template-operator
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f2b502c
commit 8607528
Showing
4 changed files
with
69 additions
and
69 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,52 @@ | ||
--- | ||
name: Bug report | ||
about: File a bug report | ||
labels: bug | ||
|
||
--- | ||
|
||
<!-- Thank you for submitting a bug report! All fields are required unless marked optional. --> | ||
|
||
## Steps to reproduce | ||
1. | ||
|
||
## Expected behavior | ||
|
||
|
||
## Actual behavior | ||
<!-- If applicable, add screenshots --> | ||
|
||
|
||
## Versions | ||
|
||
<!-- Run "lsb_release -sd" --> | ||
Operating system: | ||
|
||
<!-- Run "juju version" --> | ||
Juju CLI: | ||
|
||
<!-- Model version from "juju status" --> | ||
Juju agent: | ||
|
||
<!-- App revision from "juju status" or (advanced) commit hash --> | ||
Charm revision: | ||
|
||
<!-- Run "microk8s version" --> | ||
microk8s: | ||
|
||
## Log output | ||
<details> | ||
<summary> juju debug-log --replay </summary> | ||
|
||
<!-- Paste the full output of "juju debug-log --replay" between the triple backticks (```) --> | ||
```shell | ||
|
||
|
||
``` | ||
</details> | ||
|
||
<!-- (Optional) Copy the logs that are relevant to the bug & paste inside triple backticks below --> | ||
|
||
|
||
## Additional context | ||
<!-- (Optional) Add any additional information here --> |
This file was deleted.
Oops, something went wrong.
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,14 +1,4 @@ | ||
## Issue | ||
<!-- What does this PR solve? Include a Jira ticket. --> | ||
|
||
## Solution | ||
<!-- A summary of the proposed solution to the above issue. --> | ||
|
||
## Context | ||
<!-- Necessary details to understand the proposed changes. --> | ||
|
||
## Release Notes | ||
<!-- A simple bullet-point summary of the changes in this PR. --> | ||
|
||
## Testing | ||
<!-- A summary of how this PR has been tested, including automated testing. --> | ||
## Solution |
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,16 @@ | ||
# Copyright 2023 Canonical Ltd. | ||
# See LICENSE file for licensing details. | ||
name: Sync issue to Jira | ||
|
||
on: | ||
issues: | ||
types: [opened, reopened, closed] | ||
|
||
jobs: | ||
sync: | ||
name: Sync GitHub issue to Jira | ||
uses: canonical/data-platform-workflows/.github/workflows/sync_issue_to_jira.yaml@main | ||
with: | ||
jira-component-name: mysql-router-k8s | ||
secrets: | ||
jira-webhook-url: ${{ secrets.JIRA_URL }} |