Skip to content

Commit 7b8487d

Browse files
authoredNov 18, 2022
ARC-1820 updating dependencies, incrementing version, adding codeowners (#16)
1 parent d64bb92 commit 7b8487d

15 files changed

+8955
-92
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

‎.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/setup.yml ‎.github/workflows/on-push.yml

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

43
name: Test setup
54

@@ -14,8 +13,7 @@ jobs:
1413
- name: Setup
1514
uses: ./
1615
with:
17-
version: 1.0.20
16+
version: 1.0.27
1817

1918
- name: Print version
20-
run: |
21-
jira version
19+
run: jira version

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

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
# setup-jira
2-
Download and set up go-jira CLI. Check out [go-jira documentation](https://github.com/Netflix-Skunkworks/go-jira) for more arguments and usage details
1+
# Github Actions Jira CLI
32

4-
For examples on how to use this, check out the [gajira-demo](https://github.com/atlassian/gajira-demo) repository
3+
Download and set up go-jira CLI. Check out [go-jira documentation](https://github.com/Netflix-Skunkworks/go-jira) for more arguments and usage details
54

65
> ##### Only supports Jira Cloud. Does not support Jira Server (hosted)
76
@@ -10,9 +9,9 @@ For examples on how to use this, check out the [gajira-demo](https://github.com/
109
#### Set up
1110
```
1211
- name: Setup
13-
uses: atlassian/gajira-cli@master
12+
uses: atlassian/gajira-cli@3.0.0
1413
with:
15-
version: 1.0.20
14+
version: 1.0.27
1615
```
1716

1817
#### Usage in later workflow steps

‎action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ inputs:
99
version:
1010
description: Version of the CLI to use
1111
required: false
12-
default: 1.0.20
12+
default: 1.0.27
1313

1414
runs:
15-
using: 'node12'
15+
using: 'node16'
1616
main: './dist/index.js'

‎dist/index.js

+8,235-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.

‎dist/unzip

-170 KB
Binary file not shown.

‎dist/unzip-darwin

-181 KB
Binary file not shown.

‎package-lock.json

-71
This file was deleted.

‎package.json

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
{
22
"name": "gajira-cli",
3-
"version": "1.0.0",
3+
"version": "3.0.0",
44
"description": "Wrapped go-jira CLI action. Check out [go-jira documentation](https://github.com/Netflix-Skunkworks/go-jira) for more arguments and usage details",
55
"main": "index.js",
66
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1",
8-
"build": "ncc build index.js --minify",
9-
"watch": "ncc build index.js --watch --minify"
7+
"prepare": "husky install",
8+
"test": "exit 1",
9+
"build": "ncc build index.js -s",
10+
"start": "ncc build index.js -w",
11+
"precommit": "run-p build"
1012
},
11-
"author": "",
13+
"author": "Atlassian",
1214
"license": "ISC",
1315
"dependencies": {
14-
"@actions/core": "^1.2.6",
15-
"@actions/tool-cache": "^1.1.0"
16+
"@actions/core": "^1.10.0",
17+
"@actions/tool-cache": "^2.0.1"
1618
},
1719
"devDependencies": {
18-
"@zeit/ncc": "^0.20.4"
20+
"@vercel/ncc": "^0.34.0",
21+
"husky": "^8.0.2",
22+
"npm-run-all": "^4.1.5"
1923
}
2024
}

0 commit comments

Comments
 (0)
Failed to load comments.