Skip to content
Merged
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
19 changes: 19 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
**This PR does the following:**
- Adds functionality bullet item
- Fixes this or that bullet item

### Related Issue(s)
- [Title of the issue](https://github.com/emulsify-ds/emulsify_tools_/issues/1)

### Notes:
- (optional) Document any intentionally unfinished parts or known issues within this PR

### Functional Testing:
- [ ] Document steps that allow someone to fully test your code changes. Include screenshot and links when appropriate.

### Security
_Security checks that should be reviewed_

### Accessibility
_Should this be checked for this feature?_

18 changes: 18 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/BUG_REPORT_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
### Describe the bug
_A clear and concise description of what the bug is._

### Steps to reproduce the bug
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.

### Suggested solution or approach:
_(optional) Describe a solution or approach to your request that may help with implementation._

### Additional context
_(optional) Add any other context or screenshots about the feature request here._
11 changes: 11 additions & 0 deletions .github/workflows/ISSUE_TEMPLATE/FEATURE_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
### Emulsify Tools Version:
- [1.0.0](https://github.com/emulsify-ds/emulsify_tools_/releases)):

### Description of the feature request:
_Please give as much information as possible_

### Suggested solution or approach:
_(optional) Describe a solution or approach to your request that may help with implementation._

### Additional context:
_(optional) Add any other context or screenshots about the feature request here._
7 changes: 4 additions & 3 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
name: Semantic Release on Merge
on:
push:
branches:
- 'master'
branches: [main]
jobs:
release:
name: Attempt Semantic Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3
env:
Expand Down
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Ignore compiled files.
dist

# npm
node_modules

# System
.DS_Store
.history
.idea
.vscode

# Git deploy
.publish

# Composer
composer.lock
vendor
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
2 changes: 2 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
npm run husky:commit-msg
2 changes: 2 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
npm run husky:pre-commit
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
24
5 changes: 5 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const Configuration = {
extends: ["@commitlint/config-conventional"],
};

export default Configuration;
2 changes: 1 addition & 1 deletion emulsify_tools.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ core_version_requirement: ^10 || ^11
package: Emulsify

# Information added by Drupal.org packaging script on 2023-02-16
version: '1.0.0'
version: '1.0.2'
project: 'emulsify_tools'
datestamp: 1676582811
Loading