From bebe4617982a337573573f4a767a0fa67e758d9b Mon Sep 17 00:00:00 2001 From: Manuel Tischler Date: Fri, 3 Apr 2020 06:55:30 +0200 Subject: [PATCH 01/19] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 38 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/custom.md | 10 ++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++ 3 files changed, 68 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/custom.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..dd84ea78 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 00000000..48d5f81f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,10 @@ +--- +name: Custom issue template +about: Describe this issue template's purpose here. +title: '' +labels: '' +assignees: '' + +--- + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..bbcbbe7d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. From 92619d91f8d7be2ccfa7577b5f89ab2fdbdd4980 Mon Sep 17 00:00:00 2001 From: Manuel Tischler Date: Fri, 3 Apr 2020 06:55:55 +0200 Subject: [PATCH 02/19] Create nodejs.yml --- .github/workflows/nodejs.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/nodejs.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml new file mode 100644 index 00000000..4390e930 --- /dev/null +++ b/.github/workflows/nodejs.yml @@ -0,0 +1,31 @@ +# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: Node.js CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: npm ci + - run: npm run build --if-present + - run: npm test + env: + CI: true From e8744fdfff0a44079e77970d39688cc416872ff7 Mon Sep 17 00:00:00 2001 From: Manuel Tischler Date: Sat, 4 Apr 2020 23:31:30 +0200 Subject: [PATCH 03/19] Create greetings.yml --- .github/workflows/greetings.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 00000000..28ee6b2f --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,13 @@ +name: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Message that will be displayed on users'' first issue' + pr-message: 'Message that will be displayed on users'' first pr' From a8590c77a97f724515bb9ac77d53985b1e42b6ec Mon Sep 17 00:00:00 2001 From: Manuel Tischler Date: Sat, 4 Apr 2020 23:34:21 +0200 Subject: [PATCH 04/19] Create stale.yml --- .github/workflows/stale.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 00000000..7bbc0505 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,19 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "0 0 * * *" + +jobs: + stale: + + runs-on: ubuntu-latest + + steps: + - uses: actions/stale@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'Stale issue message' + stale-pr-message: 'Stale pull request message' + stale-issue-label: 'no-issue-activity' + stale-pr-label: 'no-pr-activity' From c1019d7af11a8321fbc4cf96388e3823237cc3ae Mon Sep 17 00:00:00 2001 From: Manuel Tischler Date: Sat, 4 Apr 2020 23:34:45 +0200 Subject: [PATCH 05/19] Create label.yml --- .github/workflows/label.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/label.yml diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 00000000..e90b599b --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,19 @@ +# This workflow will triage pull requests and apply a label based on the +# paths that are modified in the pull request. +# +# To use this workflow, you will need to set up a .github/labeler.yml +# file with configuration. For more information, see: +# https://github.com/actions/labeler/blob/master/README.md + +name: Labeler +on: [pull_request] + +jobs: + label: + + runs-on: ubuntu-latest + + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" From c207a16370a5a4001a0c0a6c866c76276bb9f543 Mon Sep 17 00:00:00 2001 From: DeepSource Bot Date: Mon, 6 Apr 2020 22:03:23 +0000 Subject: [PATCH 06/19] Add .deepsource.toml --- .deepsource.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .deepsource.toml diff --git a/.deepsource.toml b/.deepsource.toml new file mode 100644 index 00000000..811e3c1d --- /dev/null +++ b/.deepsource.toml @@ -0,0 +1,31 @@ +version = 1 + +[[analyzers]] +name = "python" +enabled = true + + [analyzers.meta] + runtime_version = "3.x.x" + +[[analyzers]] +name = "go" +enabled = true + + [analyzers.meta] + import_path = "github.com/mtdev2/github" + +[[analyzers]] +name = "test-coverage" +enabled = true + +[[analyzers]] +name = "docker" +enabled = true + +[[analyzers]] +name = "ruby" +enabled = true + +[[analyzers]] +name = "terraform" +enabled = true From 1105e9362fa49300b07f5bd3f7ebc6f012cb2f50 Mon Sep 17 00:00:00 2001 From: DeepSource Bot Date: Mon, 6 Apr 2020 22:04:10 +0000 Subject: [PATCH 07/19] Update .deepsource.toml --- .deepsource.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.deepsource.toml b/.deepsource.toml index 811e3c1d..c182df15 100644 --- a/.deepsource.toml +++ b/.deepsource.toml @@ -13,6 +13,7 @@ enabled = true [analyzers.meta] import_path = "github.com/mtdev2/github" + dependencies_vendored = true [[analyzers]] name = "test-coverage" From e510dd412db912fddbd5d2ebe72e5c326a67887e Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Thu, 9 Apr 2020 16:40:56 +0000 Subject: [PATCH 08/19] Update xo to version 0.29.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 99734e45..40ea4b33 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "server-destroy": "^1.0.1", "sinon": "^9.0.0", "tempy": "^0.5.0", - "xo": "^0.28.0" + "xo": "^0.29.0" }, "engines": { "node": ">=10.18" From 16f82ac4e1a71af39c0307225ae1c17f9bd2f655 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Sat, 25 Apr 2020 02:10:46 +0000 Subject: [PATCH 09/19] Pin @octokit/rest to version 17.6.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 40ea4b33..38fb5788 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "Gregor Martynus (https://twitter.com/gr2m)" ], "dependencies": { - "@octokit/rest": "^17.0.0", + "@octokit/rest": "17.6.0", "@semantic-release/error": "^2.2.0", "aggregate-error": "^3.0.0", "bottleneck": "^2.18.1", From 86d31656d869c4405d6c4c8743028f411b0dd6c5 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2020 16:55:28 +0000 Subject: [PATCH 10/19] Update xo to version 0.30.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 40ea4b33..1df7f138 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "server-destroy": "^1.0.1", "sinon": "^9.0.0", "tempy": "^0.5.0", - "xo": "^0.29.0" + "xo": "^0.30.0" }, "engines": { "node": ">=10.18" From cb38b3a410412e7ed35aadbf5acb36bd28849780 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Sun, 3 May 2020 00:25:38 +0000 Subject: [PATCH 11/19] Pin mime to version 2.4.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 40ea4b33..cf1685ce 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "https-proxy-agent": "^5.0.0", "issue-parser": "^6.0.0", "lodash": "^4.17.4", - "mime": "^2.4.3", + "mime": "2.4.5", "p-filter": "^2.0.0", "p-retry": "^4.0.0", "url-join": "^4.0.0" From 9ac53166957f9fd074d1ca02fa49532f1e7b35d7 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Thu, 7 May 2020 22:30:37 +0000 Subject: [PATCH 12/19] Update @octokit/rest to version 17.8.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d48b54ae..3ba652e4 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "Gregor Martynus (https://twitter.com/gr2m)" ], "dependencies": { - "@octokit/rest": "17.6.0", + "@octokit/rest": "17.8.0", "@semantic-release/error": "^2.2.0", "aggregate-error": "^3.0.0", "bottleneck": "^2.18.1", From a7023f4cff05e888f607a6f147caf437d3d06902 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Wed, 20 May 2020 03:45:35 +0000 Subject: [PATCH 13/19] Update @octokit/rest to version 17.9.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3ba652e4..f3cfb55f 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "Gregor Martynus (https://twitter.com/gr2m)" ], "dependencies": { - "@octokit/rest": "17.8.0", + "@octokit/rest": "17.9.2", "@semantic-release/error": "^2.2.0", "aggregate-error": "^3.0.0", "bottleneck": "^2.18.1", From f52a89129c3983b2640a151a554d1dbb3250babe Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Thu, 28 May 2020 18:35:50 +0000 Subject: [PATCH 14/19] Update mime to version 2.4.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f3cfb55f..7ec10978 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "https-proxy-agent": "^5.0.0", "issue-parser": "^6.0.0", "lodash": "^4.17.4", - "mime": "2.4.5", + "mime": "2.4.6", "p-filter": "^2.0.0", "p-retry": "^4.0.0", "url-join": "^4.0.0" From 894a152a6dc6d596ad70b4c3d7a542c37180092c Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Wed, 3 Jun 2020 08:55:36 +0000 Subject: [PATCH 15/19] Pin globby to version 11.0.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f3cfb55f..8265174e 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "debug": "^4.0.0", "dir-glob": "^3.0.0", "fs-extra": "^9.0.0", - "globby": "^11.0.0", + "globby": "11.0.1", "http-proxy-agent": "^4.0.0", "https-proxy-agent": "^5.0.0", "issue-parser": "^6.0.0", From e2c34d0e94e19ca743f0bd328f515a9771d7aa12 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Thu, 4 Jun 2020 13:56:11 +0000 Subject: [PATCH 16/19] Update xo to version 0.32.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f3cfb55f..ed7bf91f 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "server-destroy": "^1.0.1", "sinon": "^9.0.0", "tempy": "^0.5.0", - "xo": "^0.30.0" + "xo": "^0.32.0" }, "engines": { "node": ">=10.18" From b78da7b8be08a5968ebf88830eed43a7aa87997a Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2020 01:40:34 +0000 Subject: [PATCH 17/19] Pin fs-extra to version 9.0.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f3cfb55f..342b3b20 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "bottleneck": "^2.18.1", "debug": "^4.0.0", "dir-glob": "^3.0.0", - "fs-extra": "^9.0.0", + "fs-extra": "9.0.1", "globby": "^11.0.0", "http-proxy-agent": "^4.0.0", "https-proxy-agent": "^5.0.0", From 897ee425651c6931d53a8a7657eb9302b51139a0 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Fri, 12 Jun 2020 20:10:47 +0000 Subject: [PATCH 18/19] Update @octokit/rest to version 17.11.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f3cfb55f..6be1fc9c 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "Gregor Martynus (https://twitter.com/gr2m)" ], "dependencies": { - "@octokit/rest": "17.9.2", + "@octokit/rest": "17.11.2", "@semantic-release/error": "^2.2.0", "aggregate-error": "^3.0.0", "bottleneck": "^2.18.1", From 965bea1600dc5154c015b0f2f58b8b4e27c90a6b Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Fri, 12 Jun 2020 21:20:41 +0000 Subject: [PATCH 19/19] Update @octokit/rest to version 18.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f3cfb55f..2856b40e 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "Gregor Martynus (https://twitter.com/gr2m)" ], "dependencies": { - "@octokit/rest": "17.9.2", + "@octokit/rest": "18.0.0", "@semantic-release/error": "^2.2.0", "aggregate-error": "^3.0.0", "bottleneck": "^2.18.1",