Skip to content

Commit b172b72

Browse files
authoredNov 18, 2022
Merge pull request #29 from atlassian/transfer-ownership
ARC-1820 transfer ownership
2 parents b8fab37 + fd5f75a commit b172b72

15 files changed

+35905
-6064
lines changed
 

‎.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
trim_trailing_whitespace = true
7+
insert_final_newline = true
8+
9+
[*.md]
10+
insert_final_newline = false
11+
trim_trailing_whitespace = false
12+
13+
[*.{js,jsx,json,ts,tsx,yml}]
14+
indent_size = 2
15+
indent_style = tab
16+
tab_width = 2

‎.eslintrc.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"extends": "@atlassian-partner-engineering",
3-
"rules": {
4-
"no-plusplus": "off"
5-
}
6-
}
7-
2+
"extends": [
3+
"eslint:recommended"
4+
],
5+
"rules": {
6+
}
7+
}

‎.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @atlassian/fusion-arc

‎.github/pull_request_template.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
**What's in this PR?**
2+
3+
**Why**
4+
5+
**Affected issues**
6+
_Jira Issues_
7+
8+
**How has this been tested?**
9+
_Include how to test if applicable_
10+
11+
**Whats Next?**

‎.github/workflows/todo.yml ‎.github/workflows/on-push.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
on:
2-
push
1+
on: push
32

43
name: My Workflow
54

@@ -21,7 +20,7 @@ jobs:
2120
- name: Create TODO
2221
uses: ./
2322
with:
24-
project: MC
23+
project: TODO
2524
issuetype: Task
2625
description: Created automatically via GitHub Actions
2726
env:

‎README.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Jira TODO
22
Create issue for TODO comments
33

4-
For examples on how to use this, check out the [gajira-demo](https://github.com/atlassian/gajira-demo) repository
54
> ##### Only supports Jira Cloud. Does not support Jira Server (hosted)
65
76
## Usage

‎action.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ module.exports = class {
118118
.filter(Boolean)
119119
.map(s => ({
120120
commitUrl: c.url,
121-
summary: s,
121+
summary: s.slice(0, 255),
122122
}))
123123
}))
124124
}

‎action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ outputs:
1717
issues:
1818
description: Well-formed JSON array containing keys of all newly created issues
1919
runs:
20-
using: 'node12'
20+
using: 'node16'
2121
main: './dist/index.js'

‎dist/index.js

+32,702-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/index.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/sourcemap-register.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎jest.config.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
"testPathIgnorePatterns": [
3+
"/helpers/",
4+
"/node_modules/"
5+
],
6+
"coveragePathIgnorePatterns": [
7+
"/node_modules/"
8+
],
9+
"coverageReporters": [
10+
"lcov",
11+
"text",
12+
"clover"
13+
],
14+
"coverageDirectory": "../test-results"
15+
}

0 commit comments

Comments
 (0)
Failed to load comments.