Skip to content

Commit

Permalink
chore: Update NPM packages
Browse files Browse the repository at this point in the history
- Update NPM packages
- Add issue templates
- Add pull request template
  • Loading branch information
nastacio authored May 3, 2022
1 parent 02896a5 commit a284c7c
Show file tree
Hide file tree
Showing 7 changed files with 448 additions and 741 deletions.
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

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

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
8 changes: 8 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Contributes to: #issue_number

Description of changes:
- <change 1 ... >
- <change 2 ... >

Validation results:

10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: Appsody-Actions CI
name: Build

on:
push:
branches:
- master
pull_request:
branches: [main]

jobs:
build:
Expand All @@ -20,4 +19,5 @@ jobs:
echo 'Docker Login...'
docker login -u ${DOCKER_HUB_USER} -p ${DOCKER_HUB_KEY}
echo 'Running build and pushing to docker registry...'
docker build --tag ${DOCKER_HUB_REPO}/github-board-sync:latest
docker build . --tag ${DOCKER_HUB_REPO}/github-board-sync:latest
docker push ${DOCKER_HUB_REPO}/github-board-sync:latest
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ The configuration file is a properties file with keys and values, matching the t

1. Create a configuration file following the example above, replacing the values with the values matching your GitHub accounts.
```sh
config_contents=$(cat "${your_config_file}" | tr -d "\n" | tr -d " ")
config_contents=$(cat "${your_config_file}" | tr -d "\n")
1. Build the container image:
```sh
docker build . -t github-sync-app
Expand Down
Loading

0 comments on commit a284c7c

Please sign in to comment.