This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from zowe/updateWorkFlows
updating workflows - master
- Loading branch information
Showing
12 changed files
with
177 additions
and
27 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,40 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve the CICs Plug-in | ||
labels: bug, new | ||
--- | ||
|
||
<!-- Thanks for deciding to open an issue. Before submitting, please see the following information. --> | ||
|
||
<!-- Before opening a new issue, please search our existing issues: https://github.com/zowe/zowe-cli-cics-plugin/issues --> | ||
|
||
**Describe the bug** | ||
|
||
<!-- A clear and concise description of the bug or error. --> | ||
|
||
**Expected and actual results** | ||
|
||
<!-- | ||
Details about the behavior: | ||
1. Command issued: | ||
2. Expected results: | ||
3. Actual results: | ||
4. Applicable log files: | ||
--> | ||
**Describe your environment** | ||
|
||
<!-- | ||
- Zowe CLI version installed (run command `zowe --version`): | ||
- Installed plug-ins and their version numbers (run command `zowe plugins list --short`): | ||
- Node.js and NPM versions installed (run `node --version`, `npm --version`): | ||
- Environment variables in use: | ||
- Operating system and version: | ||
- Shell/terminal (bash, cmd, powershell, etc...): | ||
- Daemon mode enabled or disabled: | ||
- For more information, see Gathering information to troubleshoot Zowe CLI | ||
--> | ||
|
||
**Additional context** | ||
|
||
<!-- Add any other context about the problem 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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Question | ||
url: https://github.com/zowe/zowe-cli-cics-plugin/discussions/categories/q-a | ||
about: Please ask and answer questions 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,23 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for the CICS Plug-in | ||
labels: enhancement, new | ||
--- | ||
|
||
<!-- Thanks for deciding to open an issue. Before submitting, please complete the following information. --> | ||
|
||
**Is your feature or enhancement request related to a problem or limitation? Please describe** | ||
|
||
<!-- A clear and concise description of the problem or limitation. Example: I'm frustrated when [...] happens, or I wish I was able to [...] with Imperative --> | ||
|
||
**Describe your enhancement idea** | ||
|
||
<!-- A clear and concise description of what you want to happen, such as the task you are trying to complete. --> | ||
|
||
**Describe alternatives you've considered** | ||
|
||
<!-- A clear and concise description of any alternative solutions or workarounds you've used to overcome the problem or limitation. --> | ||
|
||
**Provide any additional context** | ||
|
||
<!-- Add any other context (code snippets, error messages, sample outputs, screenshots) about the request 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,16 @@ | ||
**What It Does** | ||
<!-- A list of relevant issues, enhancements, fixed bugs, etc --> | ||
|
||
**How to Test** | ||
<!-- If a bug has been fixed, how can reviewers verify that the change(s) fixed it? --> | ||
|
||
**Review Checklist** | ||
I certify that I have: | ||
- [ ] tested my changes | ||
- [ ] added/updated automated tests | ||
- [ ] updated the changelog | ||
- [ ] followed the [contribution guidelines](https://github.com/zowe/zowe-cli/blob/master/CONTRIBUTING.md) | ||
|
||
|
||
**Additional Comments** | ||
<!-- Anything else noteworthy about this pull request. This section is optional. --> |
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,11 @@ | ||
bug: | ||
comment: | | ||
Thank you for creating a bug report. | ||
We will investigate the bug and evaluate its impact on the product. | ||
If you haven't already, please ensure you have provided steps to reproduce the bug and as much context as possible. | ||
enhancement: | ||
comment: | | ||
Thank you for raising this enhancement request. | ||
The community has 90 days to vote on it. | ||
If the enhancement receives at least 5 upvotes, it is added to our development backlog. | ||
If it receives fewer votes, the issue is closed. |
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,16 @@ | ||
name: Auto Responder for New Issues | ||
# This workflow is triggered when a label is added to an issue. | ||
on: | ||
issues: | ||
types: labeled | ||
|
||
jobs: | ||
processLabelAction: | ||
name: Process Label Action | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Process Label Action | ||
uses: hramos/respond-to-issue-based-on-label@v2 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: 'Close stale issues and PRs' | ||
on: | ||
schedule: | ||
- cron: '0 */6 * * *' | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
# General rules applied to both, issues and pull requests (PRs) | ||
start-date: "2022-07-30T00:00:00Z" | ||
days-before-close: 14 | ||
days-before-stale: 90 | ||
exempt-all-assignees: true | ||
exempt-all-milestones: true | ||
|
||
# Rules applied to Issues | ||
exempt-issue-labels: "Epic, bug, priority-critical, priority-high, community-upvoted, for-review, security, keep" | ||
stale-issue-message: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. | ||
close-issue-message: > | ||
This issue has been automatically closed due to lack of activity. In an | ||
effort to reduce noise, please do not comment any further. | ||
# Rules applied to PRs | ||
exempt-pr-labels: "community-upvoted, for-review, security, keep" | ||
stale-pr-message: > | ||
This pull request has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. | ||
close-pr-message: > | ||
This pull request has been automatically closed due to lack of activity. In an | ||
effort to reduce noise, please do not comment any further. |
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