Skip to content

Commit 1d7e468

Browse files
authored
Merge pull request #3 from nandhiniG/test-pr
test commit
2 parents 973aa63 + a93c939 commit 1d7e468

3 files changed

Lines changed: 19 additions & 23 deletions

File tree

.github/pull_request_template.md

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,11 @@
22

33
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
44

5-
## Jira ticket number?
5+
## Jira ticket number
66

77

8-
## Sonar results snap or link ?
8+
## Sonar results snap or link
99

1010

11-
## Type of change
12-
13-
Please delete options that are not relevant.
14-
15-
- [ ] Hot or Bug fix (non-breaking change which fixes an issue)
16-
- [ ] New feature (non-breaking change which adds functionality)
17-
- [ ] Configuration or Document Update
18-
19-
20-
# Checklist:
21-
22-
- [ ] My code follows the PR guidelines of this project
23-
- [ ] I have performed a self-review of my own code
24-
- [ ] I have commented my code, particularly in hard-to-understand areas
25-
- [ ] I have made corresponding changes to the documentation
26-
- [ ] My changes generate no new warnings
27-
- [ ] I have added tests that prove my fix is effective or that my feature works
28-
- [ ] New and existing unit tests pass locally with my changes
29-
- [ ] Any dependent changes have been merged and published in downstream modules
30-
3111
[PR Standards](https://docs.google.com/document/d/1CGi67ib9S-EUmYRmhBLxbc2tLzv0I0C_DXUXnZ-vUkg/edit)
3212
[PR Review Guideline](https://docs.google.com/document/d/15Wt4jmwLwGkkF1ahCcb_FDKEF6Gbic-yDMbhbXwthRc/edit#)

.github/workflows/change-log.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Changelog Generator
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
types: [opened, reopened, synchronize]
7+
8+
jobs:
9+
changelog:
10+
name: Chanegelog Generator
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: etcdigital/pull-request-changelog@master
15+
with:
16+
token: ${{ secrets.GITHUB_TOKEN }}

Chapter01/CompletedCode/src/scripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class ToDoClass {
1212
this.loadTasks();
1313
this.addEventListeners();
1414
}
15-
15+
console.log("sample");
1616
addEventListeners() {
1717

1818
// Add Task

0 commit comments

Comments
 (0)