Skip to content

Commit

Permalink
[nc] release build
Browse files Browse the repository at this point in the history
Signed-off-by: Nic Cheneweth <[email protected]>
  • Loading branch information
ncheneweth committed May 4, 2024
1 parent 33f9a0b commit 6913edf
Show file tree
Hide file tree
Showing 4 changed files with 105 additions and 3 deletions.
42 changes: 42 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# yamllint disable rule:line-length
---
name: "\U0001F41E Bug Report"
description: Report any identified bugs.
title: 'Bug: '
labels: [bug]

body:
- type: checkboxes
attributes:
label: "Is there an existing issue for this?"
description: "Please search [here](https://github.com/ThoughtWorks-DPS/gha-tools-actions/issues?q=is%3Aissue) to see if an issue already exists for the bug you encountered"
options:
- label: "I have searched the existing issues"
required: true

- type: input
attributes:
label: "Action version"
description: |
Which version of `gha-tools-actions` are you using?
placeholder: "1.0.0"

- type: textarea
validations:
required: true
attributes:
label: "Current behavior"
description: "How does the issue manifest?"

- type: textarea
validations:
required: true
attributes:
label: "Minimum reproduction config"
description: "Enter a URL to a failed build or write a config example to reproduce the issue"

- type: textarea
attributes:
label: "Other"
description: |
Anything else you want to share?
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# yamllint disable rule:line-length
---
name: "\U0001F4A1 Feature Request"
description: Have an idea for a new feature? Begin by submitting a Feature Request
title: 'Request: '
labels: [enhancement]

body:
- type: checkboxes
attributes:
label: "Is there an existing issue that is already proposing this?"
description: "Please search [here](https://github.com/ThoughtWorks-DPS/gha-tools-actions/issues?q=is%3Aissue) to see if an issue already requesting this feature"
options:
- label: "I have searched the existing feature requests"
required: true

- type: textarea
validations:
required: true
attributes:
label: "Describe the problem imposed by not having this feature"
description: "Please describe the use-case you are attempting to implement, and the current limitations you are facing."

- type: textarea
validations:
required: true
attributes:
label: "Describe the solution you'd like"
description: "A clear and concise description of what you want to happen. Add any considered drawbacks"

- type: textarea
attributes:
label: "Other"
description: |
Anything else you want to share?
25 changes: 25 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/PULL_REQUEST.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## PR Type
What kind of change does this PR introduce?

<!-- Please check the one that applies to this PR using "x". -->
- [ ] Bugfix
- [ ] Feature
- [ ] Code style update (formatting)
- [ ] Refactoring (no functional changes)
- [ ] CI related changes
- [ ] Other... Please describe:

## What is the current behavior?
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->

Issue Number: N/A

## What is the new behavior?

## Does this PR introduce a breaking change?
- [ ] Yes
- [ ] No

<!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. -->

## Other information
6 changes: 3 additions & 3 deletions .github/workflows/static-code-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ jobs:
run: ${{ inputs.before-static-analysis }}

- name: gha-tools-action/lint
uses: ThoughtWorks-DPS/gha-tools-action/lint@main
uses: ThoughtWorks-DPS/gha-tools-action/lint@421a368581ea29881a5d70ef1744d90d874c5703 # v0.1.0

- name: gha-tools-action/check
uses: ThoughtWorks-DPS/gha-tools-action/check@main
uses: ThoughtWorks-DPS/gha-tools-action/check@421a368581ea29881a5d70ef1744d90d874c5703 # v0.1.0
with:
working-directory: ${{ inputs.working-directory }}
shellcheck-version: ${{ inputs.shellcheck-version }}
Expand All @@ -117,7 +117,7 @@ jobs:
shellcheck-format: ${{ inputs.shellcheck-format }}

- name: gha-tools-action/scorecard
uses: ThoughtWorks-DPS/gha-tools-action/scorecard@main
uses: ThoughtWorks-DPS/gha-tools-action/scorecard@421a368581ea29881a5d70ef1744d90d874c5703 # v0.1.0

- name: run custom after-analysis scripts
working-directory: ${{ inputs.working-directory }}
Expand Down

0 comments on commit 6913edf

Please sign in to comment.