Skip to content

Commit

Permalink
Merge pull request #29 from atlassian/transfer-ownership
Browse files Browse the repository at this point in the history
ARC-1820 transfer ownership
  • Loading branch information
mboudreau authored Nov 18, 2022
2 parents b8fab37 + fd5f75a commit b172b72
Show file tree
Hide file tree
Showing 15 changed files with 35,905 additions and 6,064 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
root = true

[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
insert_final_newline = false
trim_trailing_whitespace = false

[*.{js,jsx,json,ts,tsx,yml}]
indent_size = 2
indent_style = tab
tab_width = 2
12 changes: 6 additions & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "@atlassian-partner-engineering",
"rules": {
"no-plusplus": "off"
}
}
"extends": [
"eslint:recommended"
],
"rules": {
}
}
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @atlassian/fusion-arc
11 changes: 11 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
**What's in this PR?**

**Why**

**Affected issues**
_Jira Issues_

**How has this been tested?**
_Include how to test if applicable_

**Whats Next?**
5 changes: 2 additions & 3 deletions .github/workflows/todo.yml → .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
on:
push
on: push

name: My Workflow

Expand All @@ -21,7 +20,7 @@ jobs:
- name: Create TODO
uses: ./
with:
project: MC
project: TODO
issuetype: Task
description: Created automatically via GitHub Actions
env:
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Jira TODO
Create issue for TODO comments

For examples on how to use this, check out the [gajira-demo](https://github.com/atlassian/gajira-demo) repository
> ##### Only supports Jira Cloud. Does not support Jira Server (hosted)
## Usage
Expand Down
2 changes: 1 addition & 1 deletion action.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ module.exports = class {
.filter(Boolean)
.map(s => ({
commitUrl: c.url,
summary: s,
summary: s.slice(0, 255),
}))
}))
}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ outputs:
issues:
description: Well-formed JSON array containing keys of all newly created issues
runs:
using: 'node12'
using: 'node16'
main: './dist/index.js'
32,703 changes: 32,702 additions & 1 deletion dist/index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/index.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/sourcemap-register.js

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
"testPathIgnorePatterns": [
"/helpers/",
"/node_modules/"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"lcov",
"text",
"clover"
],
"coverageDirectory": "../test-results"
}
Loading

0 comments on commit b172b72

Please sign in to comment.