Skip to content

Commit

Permalink
Merge pull request #36 from atlassian/tranfer-ownership
Browse files Browse the repository at this point in the history
ARC-1820 tranfer ownership
  • Loading branch information
mboudreau committed Nov 18, 2022
2 parents 0fb280d + 079da3f commit 4749176
Show file tree
Hide file tree
Showing 14 changed files with 36,001 additions and 1,906 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
Validating CODEOWNERS rules …
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?**
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
on:
push
on: push

name: Test Transition Issue

Expand All @@ -22,13 +21,10 @@ jobs:
id: create
uses: atlassian/gajira-create@master
with:
project: GA
issuetype: Build
summary: |
Build completed for ${{ github.repository }}
description: |
Compare branch|${{ github.event.compare }} # https://developer.github.com/v3/activity/events/types/#webhook-payload-example-31
project: TRANS
issuetype: Task
summary: Build completed for ${{ github.repository }}
description: Compare branch|${{ github.event.compare }} # https://developer.github.com/v3/activity/events/types/#webhook-payload-example-31

- name: Transition issue
uses: ./
Expand Down
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn precommit
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Jira Transition
Transition Jira issue

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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ inputs:
description: The id of a transition to apply to the issue
required: false
runs:
using: 'node12'
using: 'node16'
main: './dist/index.js'
32,539 changes: 32,538 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.

Loading

0 comments on commit 4749176

Please sign in to comment.