Skip to content

Commit 4749176

Browse files
authoredNov 18, 2022
Merge pull request #36 from atlassian/tranfer-ownership
ARC-1820 tranfer ownership
2 parents 0fb280d + 079da3f commit 4749176

14 files changed

+36001
-1906
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/transition.yml ‎.github/workflows/on-push.yml

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

43
name: Test Transition Issue
54

@@ -22,13 +21,10 @@ jobs:
2221
id: create
2322
uses: atlassian/gajira-create@master
2423
with:
25-
project: GA
26-
issuetype: Build
27-
summary: |
28-
Build completed for ${{ github.repository }}
29-
description: |
30-
Compare branch|${{ github.event.compare }} # https://developer.github.com/v3/activity/events/types/#webhook-payload-example-31
31-
24+
project: TRANS
25+
issuetype: Task
26+
summary: Build completed for ${{ github.repository }}
27+
description: Compare branch|${{ github.event.compare }} # https://developer.github.com/v3/activity/events/types/#webhook-payload-example-31
3228

3329
- name: Transition issue
3430
uses: ./

‎.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn precommit

‎README.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Jira Transition
22
Transition Jira issue
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.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ inputs:
1414
description: The id of a transition to apply to the issue
1515
required: false
1616
runs:
17-
using: 'node12'
17+
using: 'node16'
1818
main: './dist/index.js'

‎dist/index.js

+32,538-1
Large diffs are not rendered by default.

‎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.

0 commit comments

Comments
 (0)
Failed to load comments.