github-lister-core 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/ask_question.yml +2 -2
- data/.github/ISSUE_TEMPLATE/bug_report.yml +2 -2
- data/.github/ISSUE_TEMPLATE/feature_request.yml +2 -2
- data/.github/dependabot.yml +21 -0
- data/.github/workflows/{pipeline.yml → cicd-pipeline.yml} +19 -18
- data/.github/workflows/codeql-analysis.yml +40 -0
- data/.github/workflows/delete-old-runs.yml +33 -0
- data/.github/workflows/dependabot-approve-and-auto-merge.yml +36 -0
- data/.github/workflows/greetings.yml +16 -0
- data/.github/workflows/handle-stale.yml +33 -0
- data/.github/workflows/purge-obsolete-runs.yml +13 -0
- data/.gitignore +1 -1
- data/.reek.yml +6 -4
- data/.rubocop.yml +9 -1
- data/CHANGELOG.md +111 -11
- data/Gemfile +1 -1
- data/Gemfile.lock +83 -0
- data/LICENSE.md +1 -1
- data/README.md +68 -25
- data/bin/console +1 -1
- data/github-lister-core.gemspec +6 -5
- data/lib/github-lister-core/client.rb +2 -0
- data/lib/github-lister-core/errors.rb +1 -1
- data/lib/github-lister-core/organisations.rb +21 -9
- data/lib/github-lister-core/regex.rb +34 -0
- data/lib/github-lister-core/releases.rb +8 -6
- data/lib/github-lister-core/repos.rb +21 -19
- data/lib/github-lister-core/topics.rb +1 -1
- data/lib/github-lister-core/users.rb +47 -3
- data/lib/github-lister-core/utils.rb +7 -2
- data/lib/github-lister-core/version.rb +11 -1
- data/lib/github-lister-core.rb +31 -16
- data/testing/get-raw.rb +13 -6
- metadata +22 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c236137b644148c2c1eafb55ff321743ad1df507b4138219c6bfd3ea781673bd
|
|
4
|
+
data.tar.gz: 8106ef65ad895a20ebbf9e3065aa084580ae525e1ab7e3bdfb1ad0621168ddbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4193ab98e7660410dfca0d4fcac33b24f7d622c97875982901c900ae719ed91a93cafa848993812421300ba7ba549b09042761a347255e3846044283a7d65af1
|
|
7
|
+
data.tar.gz: fd3831b3cfbf9a007211211b0dc97877158ef34d79ade53fb85c225ce1920be2cf0c97191c847b2c515235019651b328adaab0c8357680ec6c148f6ccfe328cb
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
name: Ask a question
|
|
2
2
|
description: If you don't have a specific issue or bug to report you can still ask us questions and we will do our best to answer them
|
|
3
3
|
title: "[Question]: "
|
|
4
|
-
labels: [question, triage]
|
|
4
|
+
labels: ["type: question", "state: triage"]
|
|
5
5
|
assignees:
|
|
6
6
|
- tgwolf
|
|
7
7
|
body:
|
|
@@ -16,7 +16,7 @@ body:
|
|
|
16
16
|
id: terms
|
|
17
17
|
attributes:
|
|
18
18
|
label: Code of Conduct
|
|
19
|
-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://
|
|
19
|
+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/DevelopersToolbox/github-lister-core/blob/master/.github/CODE_OF_CONDUCT.md)
|
|
20
20
|
options:
|
|
21
21
|
- label: I agree to follow this project's Code of Conduct
|
|
22
22
|
required: true
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
name: Report a bug
|
|
2
2
|
description: Found a bug? Let us knonw what the issue is and we will attempt to fix it
|
|
3
3
|
title: "[Bug]: "
|
|
4
|
-
labels: [bug, triage]
|
|
4
|
+
labels: ["type: bug", "state: triage"]
|
|
5
5
|
assignees:
|
|
6
6
|
- tgwolf
|
|
7
7
|
body:
|
|
@@ -52,7 +52,7 @@ body:
|
|
|
52
52
|
id: terms
|
|
53
53
|
attributes:
|
|
54
54
|
label: Code of Conduct
|
|
55
|
-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://
|
|
55
|
+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/DevelopersToolbox/github-lister-core/blob/master/.github/CODE_OF_CONDUCT.md)
|
|
56
56
|
options:
|
|
57
57
|
- label: I agree to follow this project's Code of Conduct
|
|
58
58
|
required: true
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
name: Request a new feature
|
|
2
2
|
description: Got an idea for a new feature? Let us know what you want and we will see if we can add it
|
|
3
3
|
title: "[Feature Request]: "
|
|
4
|
-
labels: [
|
|
4
|
+
labels: ["type: feature", "state: triage"]
|
|
5
5
|
assignees:
|
|
6
6
|
- tgwolf
|
|
7
7
|
body:
|
|
@@ -37,7 +37,7 @@ body:
|
|
|
37
37
|
id: terms
|
|
38
38
|
attributes:
|
|
39
39
|
label: Code of Conduct
|
|
40
|
-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://
|
|
40
|
+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/DevelopersToolbox/github-lister-core/blob/master/.github/CODE_OF_CONDUCT.md)
|
|
41
41
|
options:
|
|
42
42
|
- label: I agree to follow this project's Code of Conduct
|
|
43
43
|
required: true
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
|
|
3
|
+
updates:
|
|
4
|
+
- package-ecosystem: "github-actions"
|
|
5
|
+
directory: "/"
|
|
6
|
+
schedule:
|
|
7
|
+
interval: "daily"
|
|
8
|
+
open-pull-requests-limit: 10
|
|
9
|
+
labels:
|
|
10
|
+
- "dependabot: lang : github actions"
|
|
11
|
+
- "dependabot: dependencies"
|
|
12
|
+
|
|
13
|
+
- package-ecosystem: "bundler"
|
|
14
|
+
directory: "/"
|
|
15
|
+
schedule:
|
|
16
|
+
interval: "daily"
|
|
17
|
+
open-pull-requests-limit: 10
|
|
18
|
+
labels:
|
|
19
|
+
- "dependabot: lang : ruby"
|
|
20
|
+
- "dependabot: dependencies"
|
|
21
|
+
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
name:
|
|
1
|
+
name: CI/CD Pipeline
|
|
2
2
|
on: [push, pull_request]
|
|
3
|
-
|
|
3
|
+
|
|
4
4
|
jobs:
|
|
5
5
|
bundler:
|
|
6
6
|
runs-on: ubuntu-latest
|
|
7
7
|
strategy:
|
|
8
8
|
matrix:
|
|
9
|
-
ruby: [ '2.
|
|
9
|
+
ruby: [ '2.7', '3.0', '3.1', 'head' ]
|
|
10
10
|
name: Bundler Test on Ruby ${{ matrix.ruby }}
|
|
11
11
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
12
|
+
- uses: actions/checkout@v3
|
|
13
13
|
- name: Set up Ruby ${{ matrix.ruby }}
|
|
14
14
|
uses: ruby/setup-ruby@v1
|
|
15
15
|
with:
|
|
@@ -22,10 +22,10 @@ jobs:
|
|
|
22
22
|
runs-on: ubuntu-latest
|
|
23
23
|
strategy:
|
|
24
24
|
matrix:
|
|
25
|
-
ruby: [ '2.
|
|
25
|
+
ruby: [ '2.7', '3.0', '3.1', 'head' ]
|
|
26
26
|
name: Reek Test on Ruby ${{ matrix.ruby }}
|
|
27
27
|
steps:
|
|
28
|
-
- uses: actions/checkout@
|
|
28
|
+
- uses: actions/checkout@v3
|
|
29
29
|
- name: Set up Ruby ${{ matrix.ruby }}
|
|
30
30
|
uses: ruby/setup-ruby@v1
|
|
31
31
|
with:
|
|
@@ -36,10 +36,10 @@ jobs:
|
|
|
36
36
|
runs-on: ubuntu-latest
|
|
37
37
|
strategy:
|
|
38
38
|
matrix:
|
|
39
|
-
ruby: [ '2.
|
|
39
|
+
ruby: [ '2.7', '3.0', '3.1', 'head' ]
|
|
40
40
|
name: Rubocop Test on Ruby ${{ matrix.ruby }}
|
|
41
41
|
steps:
|
|
42
|
-
- uses: actions/checkout@
|
|
42
|
+
- uses: actions/checkout@v3
|
|
43
43
|
- name: Set up Ruby ${{ matrix.ruby }}
|
|
44
44
|
uses: ruby/setup-ruby@v1
|
|
45
45
|
with:
|
|
@@ -50,11 +50,11 @@ jobs:
|
|
|
50
50
|
name: Awesomebot
|
|
51
51
|
runs-on: ubuntu-latest
|
|
52
52
|
steps:
|
|
53
|
-
- uses: actions/checkout@
|
|
54
|
-
- name: Set up Ruby 3.
|
|
53
|
+
- uses: actions/checkout@v3
|
|
54
|
+
- name: Set up Ruby 3.1
|
|
55
55
|
uses: ruby/setup-ruby@v1
|
|
56
56
|
with:
|
|
57
|
-
ruby-version: 3.
|
|
57
|
+
ruby-version: 3.1
|
|
58
58
|
- name: Run Awesomebot
|
|
59
59
|
env:
|
|
60
60
|
FLAGS: "default"
|
|
@@ -65,22 +65,22 @@ jobs:
|
|
|
65
65
|
name: ShellCheck
|
|
66
66
|
runs-on: ubuntu-latest
|
|
67
67
|
steps:
|
|
68
|
-
- uses: actions/checkout@
|
|
68
|
+
- uses: actions/checkout@v3
|
|
69
69
|
- name: Run Shellcheck
|
|
70
70
|
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/shellcheck/master/pipeline.sh)
|
|
71
71
|
yaml-lint:
|
|
72
72
|
name: YAML Lint
|
|
73
73
|
runs-on: ubuntu-latest
|
|
74
74
|
steps:
|
|
75
|
-
- uses: actions/checkout@
|
|
76
|
-
- name: Set up Ruby 3.
|
|
75
|
+
- uses: actions/checkout@v3
|
|
76
|
+
- name: Set up Ruby 3.1
|
|
77
77
|
uses: ruby/setup-ruby@v1
|
|
78
78
|
with:
|
|
79
|
-
ruby-version: 3.
|
|
79
|
+
ruby-version: 3.1
|
|
80
80
|
- name: Run YAML-Lint
|
|
81
81
|
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/yaml-lint/master/pipeline.sh)
|
|
82
82
|
slack-workflow-status:
|
|
83
|
-
if:
|
|
83
|
+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
|
84
84
|
name: Slack Post Workflow Notification
|
|
85
85
|
needs:
|
|
86
86
|
- bundler
|
|
@@ -92,8 +92,9 @@ jobs:
|
|
|
92
92
|
runs-on: ubuntu-latest
|
|
93
93
|
steps:
|
|
94
94
|
- name: Slack Post Workflow Notification
|
|
95
|
-
uses:
|
|
95
|
+
uses: come25136/workflow-notification-for-slack@main
|
|
96
96
|
with:
|
|
97
|
-
include_jobs: true
|
|
98
97
|
repo_token: ${{secrets.GITHUB_TOKEN}}
|
|
99
98
|
slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}}
|
|
99
|
+
include_jobs: on-failure
|
|
100
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
name: CodeQL
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ '**' ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ '**' ]
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
schedule:
|
|
10
|
+
- cron: '28 1 * * 0'
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
analyze:
|
|
14
|
+
name: Analyze
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
permissions:
|
|
17
|
+
actions: read
|
|
18
|
+
contents: read
|
|
19
|
+
security-events: write
|
|
20
|
+
|
|
21
|
+
strategy:
|
|
22
|
+
fail-fast: false
|
|
23
|
+
matrix:
|
|
24
|
+
language: [ 'ruby' ]
|
|
25
|
+
|
|
26
|
+
steps:
|
|
27
|
+
- name: Checkout repository
|
|
28
|
+
uses: actions/checkout@v3
|
|
29
|
+
|
|
30
|
+
- name: Initialize CodeQL
|
|
31
|
+
uses: github/codeql-action/init@v2
|
|
32
|
+
with:
|
|
33
|
+
languages: ${{ matrix.language }}
|
|
34
|
+
queries: +security-and-quality
|
|
35
|
+
|
|
36
|
+
- name: Autobuild
|
|
37
|
+
uses: github/codeql-action/autobuild@v2
|
|
38
|
+
|
|
39
|
+
- name: Perform CodeQL Analysis
|
|
40
|
+
uses: github/codeql-action/analyze@v2
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
name: Delete old workflow runs
|
|
2
|
+
on:
|
|
3
|
+
workflow_dispatch:
|
|
4
|
+
inputs:
|
|
5
|
+
days:
|
|
6
|
+
description: 'Number of days.'
|
|
7
|
+
required: true
|
|
8
|
+
default: 30
|
|
9
|
+
minimum_runs:
|
|
10
|
+
description: 'The minimum runs to keep for each workflow.'
|
|
11
|
+
required: true
|
|
12
|
+
default: 6
|
|
13
|
+
schedule:
|
|
14
|
+
- cron: '0 4 * * *'
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
delete_old_workflows:
|
|
18
|
+
runs-on: ubuntu-latest
|
|
19
|
+
steps:
|
|
20
|
+
- name: Set the variables
|
|
21
|
+
env:
|
|
22
|
+
DEFAULT_DAYS: 14
|
|
23
|
+
DEFAULT_MINIMUM_RUNS: 3
|
|
24
|
+
run: |
|
|
25
|
+
echo "DAYS=${{ github.event.inputs.days || env.DEFAULT_DAYS }}" >> $GITHUB_ENV
|
|
26
|
+
echo "MINIMUM_RUNS=${{ github.event.inputs.minimum_runs || env.DEFAULT_MINIMUM_RUNS }}" >> $GITHUB_ENV
|
|
27
|
+
- name: Delete workflow runs
|
|
28
|
+
uses: Mattraks/delete-workflow-runs@v2
|
|
29
|
+
with:
|
|
30
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
31
|
+
repository: ${{ github.repository }}
|
|
32
|
+
retain_days: ${{ env.DAYS }}
|
|
33
|
+
keep_minimum_runs: ${{ env.MINIMUM_RUNS }}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: Dependabot pull request approve and merge
|
|
2
|
+
on: pull_request_target
|
|
3
|
+
|
|
4
|
+
permissions:
|
|
5
|
+
pull-requests: write
|
|
6
|
+
contents: write
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
dependabot:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
if: ${{ github.actor == 'dependabot[bot]' }}
|
|
12
|
+
steps:
|
|
13
|
+
- name: Dependabot metadata
|
|
14
|
+
id: dependabot-metadata
|
|
15
|
+
uses: dependabot/fetch-metadata@v1.3.3
|
|
16
|
+
with:
|
|
17
|
+
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
18
|
+
- name: Approve a PR
|
|
19
|
+
run: gh pr review --approve "$PR_URL"
|
|
20
|
+
env:
|
|
21
|
+
PR_URL: ${{ github.event.pull_request.html_url }}
|
|
22
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
23
|
+
- name: Auto-merge non major updates
|
|
24
|
+
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
|
|
25
|
+
run: gh pr merge --auto --squash "$PR_URL"
|
|
26
|
+
env:
|
|
27
|
+
PR_URL: ${{ github.event.pull_request.html_url }}
|
|
28
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
29
|
+
- name: Comment + label major updates
|
|
30
|
+
if: ${{ steps.dependabot-metadata.outputs.update-type == 'version-update:semver-major' }}
|
|
31
|
+
run: |
|
|
32
|
+
gh pr comment $PR_URL --body "I'm **not approving** this PR because **it includes a major update of a dependency**"
|
|
33
|
+
gh pr edit $PR_URL --add-label "dependabot: manual QA"
|
|
34
|
+
env:
|
|
35
|
+
PR_URL: ${{ github.event.pull_request.html_url }}
|
|
36
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
name: Greetings
|
|
2
|
+
|
|
3
|
+
on: [pull_request_target, issues]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
greeting:
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
permissions:
|
|
9
|
+
issues: write
|
|
10
|
+
pull-requests: write
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/first-interaction@v1
|
|
13
|
+
with:
|
|
14
|
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
15
|
+
issue-message: "Thank you for raising your first issue - all contributions to this project are welcome!"
|
|
16
|
+
pr-message: "Thank you for raising your first pull request - all contributions to this project are welcome!"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
name: Stale issue/pr handler
|
|
2
|
+
on:
|
|
3
|
+
workflow_dispatch:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: '0 4 * * *'
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
issues: write
|
|
9
|
+
pull-requests: write
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
handle-stale-entries:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/stale@v5
|
|
16
|
+
id: stale
|
|
17
|
+
with:
|
|
18
|
+
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
|
|
19
|
+
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
|
|
20
|
+
days-before-issue-stale: 30
|
|
21
|
+
days-before-issue-close: 5
|
|
22
|
+
stale-issue-label: 'state: stale'
|
|
23
|
+
close-issue-label: 'resolution closed'
|
|
24
|
+
exempt-issue-labels: 'state: blocked,state: keep'
|
|
25
|
+
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.'
|
|
26
|
+
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'
|
|
27
|
+
days-before-pr-stale: 45
|
|
28
|
+
days-before-pr-close: 10
|
|
29
|
+
stale-pr-label: 'state: stale'
|
|
30
|
+
close-pr-label: 'resolution: closed'
|
|
31
|
+
exempt-pr-labels: 'state: blocked,state: keep'
|
|
32
|
+
- name: Print outputs
|
|
33
|
+
run: echo ${{ join(steps.stale.outputs.*, ',') }}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
name: Purge obsolete workflow runs
|
|
2
|
+
on:
|
|
3
|
+
workflow_dispatch:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: '0 4 * * *'
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
purge_obsolete_workflows:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- uses: otto-contentfactory/purge-workflow-runs@v1
|
|
12
|
+
with:
|
|
13
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
data/.gitignore
CHANGED
data/.reek.yml
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
---
|
|
2
2
|
detectors:
|
|
3
|
-
TooManyStatements:
|
|
4
|
-
max_statements: 10
|
|
5
|
-
TooManyMethods:
|
|
6
|
-
max_methods: 20
|
|
7
3
|
DataClump:
|
|
8
4
|
enabled: false
|
|
5
|
+
LongParameterList:
|
|
6
|
+
max_params: 5
|
|
9
7
|
NilCheck:
|
|
10
8
|
enabled: false
|
|
9
|
+
TooManyMethods:
|
|
10
|
+
max_methods: 20
|
|
11
|
+
TooManyStatements:
|
|
12
|
+
max_statements: 10
|
data/.rubocop.yml
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
AllCops:
|
|
2
2
|
NewCops: enable
|
|
3
|
-
TargetRubyVersion: 2.5
|
|
4
3
|
|
|
5
4
|
Layout/IndentationWidth:
|
|
6
5
|
Width: 4
|
|
@@ -20,12 +19,21 @@ Style/FrozenStringLiteralComment:
|
|
|
20
19
|
Style/HashSyntax:
|
|
21
20
|
EnforcedStyle: hash_rockets
|
|
22
21
|
|
|
22
|
+
Style/OptionalBooleanParameter:
|
|
23
|
+
Enabled: false
|
|
24
|
+
|
|
25
|
+
Style/ParenthesesAroundCondition:
|
|
26
|
+
Enabled: false
|
|
27
|
+
|
|
23
28
|
Style/RaiseArgs:
|
|
24
29
|
EnforcedStyle: compact
|
|
25
30
|
|
|
26
31
|
Style/RedundantBegin:
|
|
27
32
|
Enabled: false
|
|
28
33
|
|
|
34
|
+
Style/RedundantParentheses:
|
|
35
|
+
Enabled: false
|
|
36
|
+
|
|
29
37
|
Style/Semicolon:
|
|
30
38
|
AllowAsExpressionSeparator: true
|
|
31
39
|
|
data/CHANGELOG.md
CHANGED
|
@@ -5,20 +5,124 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
|
|
6
6
|
This changelog was automatically generated using [Caretaker](https://github.com/DevelopersToolbox/caretaker) by [Wolf Software](https://github.com/WolfSoftware)
|
|
7
7
|
|
|
8
|
-
### [
|
|
8
|
+
### [Unreleased](https://github.com/DevelopersToolbox/github-lister-core/compare/v0.1.6...HEAD)
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
- smell fix [`[head]`](https://github.com/DevelopersToolbox/github-lister-core/commit/)
|
|
11
|
+
|
|
12
|
+
- smell fix [`[a5cad8a]`](https://github.com/DevelopersToolbox/github-lister-core/commit/a5cad8abe88c81f60c56511e6caa1e0ae0c52862)
|
|
13
|
+
|
|
14
|
+
- smell fix [`[550bd57]`](https://github.com/DevelopersToolbox/github-lister-core/commit/550bd57375e70066341525c9fe01941f426f8723)
|
|
15
|
+
|
|
16
|
+
- Bump octokit from 5.5.0 to 5.6.1 [`[#6]`](https://github.com/DevelopersToolbox/github-lister-core/pull/6)
|
|
17
|
+
|
|
18
|
+
Bumps [octokit](https://github.com/octokit/octokit.rb) from 5.5.0 to 5.6.1.
|
|
19
|
+
- [Release notes](https://github.com/octokit/octokit.rb/releases)
|
|
20
|
+
- [Changelog](https://github.com/octokit/octokit.rb/blob/main/RELEASE.md)
|
|
21
|
+
- [Commits](https://github.com/octokit/octokit.rb/compare/v5.5.0...v5.6.1)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
updated-dependencies:
|
|
25
|
+
- dependency-name: octokit
|
|
26
|
+
dependency-type: direct:production
|
|
27
|
+
update-type: version-update:semver-minor
|
|
28
|
+
...
|
|
29
|
+
|
|
30
|
+
Signed-off-by: dependabot[bot] <support@github.com>
|
|
31
|
+
|
|
32
|
+
Signed-off-by: dependabot[bot] <support@github.com>
|
|
33
|
+
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
|
34
|
+
|
|
35
|
+
- Bump actions/checkout from 2 to 3 [`[#5]`](https://github.com/DevelopersToolbox/github-lister-core/pull/5)
|
|
36
|
+
|
|
37
|
+
- Bump octokit from 5.4.0 to 5.5.0 [`[#4]`](https://github.com/DevelopersToolbox/github-lister-core/pull/4)
|
|
38
|
+
|
|
39
|
+
Bumps [octokit](https://github.com/octokit/octokit.rb) from 5.4.0 to 5.5.0.
|
|
40
|
+
- [Release notes](https://github.com/octokit/octokit.rb/releases)
|
|
41
|
+
- [Changelog](https://github.com/octokit/octokit.rb/blob/main/RELEASE.md)
|
|
42
|
+
- [Commits](https://github.com/octokit/octokit.rb/compare/v5.4.0...v5.5.0)
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
updated-dependencies:
|
|
46
|
+
- dependency-name: octokit
|
|
47
|
+
dependency-type: direct:production
|
|
48
|
+
update-type: version-update:semver-minor
|
|
49
|
+
...
|
|
50
|
+
|
|
51
|
+
Signed-off-by: dependabot[bot] <support@github.com>
|
|
52
|
+
|
|
53
|
+
Signed-off-by: dependabot[bot] <support@github.com>
|
|
54
|
+
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
|
55
|
+
|
|
56
|
+
- Add greetings [`[d00cb93]`](https://github.com/DevelopersToolbox/github-lister-core/commit/d00cb93b2d01a413fa4dbabc7e6fe4dfc42444bd)
|
|
57
|
+
|
|
58
|
+
- Fix gitignore to ignore gem file [`[441b36a]`](https://github.com/DevelopersToolbox/github-lister-core/commit/441b36a39e10ed431a14ad7726e04bb21444aaf9)
|
|
59
|
+
|
|
60
|
+
- Fix gitignore to ignore gem file [`[a8c969c]`](https://github.com/DevelopersToolbox/github-lister-core/commit/a8c969cb676a99e1508ae86e8f060c02f3beb010)
|
|
61
|
+
|
|
62
|
+
- Update rake requirement from ~> 12 to ~> 13 [`[#3]`](https://github.com/DevelopersToolbox/github-lister-core/pull/3)
|
|
63
|
+
|
|
64
|
+
- Bump octokit from 5.2.0 to 5.4.0 [`[#2]`](https://github.com/DevelopersToolbox/github-lister-core/pull/2)
|
|
65
|
+
|
|
66
|
+
Bumps [octokit](https://github.com/octokit/octokit.rb) from 5.2.0 to 5.4.0.
|
|
67
|
+
- [Release notes](https://github.com/octokit/octokit.rb/releases)
|
|
68
|
+
- [Changelog](https://github.com/octokit/octokit.rb/blob/main/RELEASE.md)
|
|
69
|
+
- [Commits](https://github.com/octokit/octokit.rb/compare/v5.2.0...v5.4.0)
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
updated-dependencies:
|
|
73
|
+
- dependency-name: octokit
|
|
74
|
+
dependency-type: direct:production
|
|
75
|
+
update-type: version-update:semver-minor
|
|
76
|
+
...
|
|
77
|
+
|
|
78
|
+
Signed-off-by: dependabot[bot] <support@github.com>
|
|
79
|
+
|
|
80
|
+
Signed-off-by: dependabot[bot] <support@github.com>
|
|
81
|
+
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
|
82
|
+
|
|
83
|
+
- Update rubocop requirement from ~> 1.11.0 to ~> 1.36.0 [`[#1]`](https://github.com/DevelopersToolbox/github-lister-core/pull/1)
|
|
84
|
+
|
|
85
|
+
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version.
|
|
86
|
+
- [Release notes](https://github.com/rubocop/rubocop/releases)
|
|
87
|
+
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
|
|
88
|
+
- [Commits](https://github.com/rubocop/rubocop/compare/v1.11.0...v1.36.0)
|
|
11
89
|
|
|
12
|
-
|
|
90
|
+
---
|
|
91
|
+
updated-dependencies:
|
|
92
|
+
- dependency-name: rubocop
|
|
93
|
+
dependency-type: direct:development
|
|
94
|
+
update-type: version-update:semver-minor
|
|
95
|
+
...
|
|
96
|
+
|
|
97
|
+
Signed-off-by: dependabot[bot] <support@github.com>
|
|
98
|
+
|
|
99
|
+
Signed-off-by: dependabot[bot] <support@github.com>
|
|
100
|
+
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
|
101
|
+
|
|
102
|
+
- Workflows and dependabot [`[b39ac5e]`](https://github.com/DevelopersToolbox/github-lister-core/commit/b39ac5e15394904be5349c3d6d49d9e0fd590d04)
|
|
103
|
+
|
|
104
|
+
- Added basix regex options and new validate_user user stub. Also changed how multiple user/username optoins work - now merged rather than replaced [`[d7e370f]`](https://github.com/DevelopersToolbox/github-lister-core/commit/d7e370f6d1f2a2982ec8481a2ba561a5cb42dfb3)
|
|
105
|
+
|
|
106
|
+
- Update the workflow slack integration and add delete workflows [`[cb9abcb]`](https://github.com/DevelopersToolbox/github-lister-core/commit/cb9abcb654a91610eb8a27c713da730d8bf8d67e)
|
|
107
|
+
|
|
108
|
+
- Update workflows to remove ruby 2.6 and add 3.1 [`[422ff05]`](https://github.com/DevelopersToolbox/github-lister-core/commit/422ff05113a49603d73d04edcdc1554076c5819b)
|
|
109
|
+
|
|
110
|
+
- Add new feature to pull additional information about organisations [`[213a2fc]`](https://github.com/DevelopersToolbox/github-lister-core/commit/213a2fc0a866e697b48ae276244332f494e09f18)
|
|
13
111
|
|
|
14
112
|
### [v0.1.5](https://github.com/DevelopersToolbox/github-lister-core/compare/v0.1.4...v0.1.5)
|
|
15
113
|
|
|
16
114
|
> Released on June, 13th 2022
|
|
17
115
|
|
|
18
|
-
-
|
|
116
|
+
- fix pakcage and git ignore [`[c79475f]`](https://github.com/DevelopersToolbox/github-lister-core/commit/c79475fcb9084d9b74ddad2fde1db28a8f059336)
|
|
19
117
|
|
|
20
118
|
### [v0.1.4](https://github.com/DevelopersToolbox/github-lister-core/compare/v0.1.3...v0.1.4)
|
|
21
119
|
|
|
120
|
+
> Released on June, 13th 2022
|
|
121
|
+
|
|
122
|
+
- Added workflows [`[84a37a1]`](https://github.com/DevelopersToolbox/github-lister-core/commit/84a37a1b39c71a48f877d972a4bbdaea9571e39d)
|
|
123
|
+
|
|
124
|
+
### [v0.1.3](https://github.com/DevelopersToolbox/github-lister-core/compare/v0.1.2...v0.1.3)
|
|
125
|
+
|
|
22
126
|
> Released on May, 20th 2022
|
|
23
127
|
|
|
24
128
|
- Added SAML error handling and also capture genereic error and surface the message [`[7b72478]`](https://github.com/DevelopersToolbox/github-lister-core/commit/7b72478d5de58b5dd862d04bf0d66345dc334b1c)
|
|
@@ -31,27 +135,23 @@ This changelog was automatically generated using [Caretaker](https://github.com/
|
|
|
31
135
|
|
|
32
136
|
- Fix travis rvm versions and slack integration [`[80efe68]`](https://github.com/DevelopersToolbox/github-lister-core/commit/80efe68ddc3c547d15852dca62e7ba293ecab2d3)
|
|
33
137
|
|
|
34
|
-
### [v0.1.
|
|
138
|
+
### [v0.1.2](https://github.com/DevelopersToolbox/github-lister-core/compare/v0.1.1...v0.1.2)
|
|
35
139
|
|
|
36
140
|
> Released on March, 12th 2021
|
|
37
141
|
|
|
38
142
|
- Added a begin->rescue->end to handle incorrect or expired PAT codes when looking up a username [`[820d5af]`](https://github.com/DevelopersToolbox/github-lister-core/commit/820d5af0a75f96ddd20d9cf6cde0ab9c1fa404ba)
|
|
39
143
|
|
|
40
|
-
### [v0.1.
|
|
144
|
+
### [v0.1.1](https://github.com/DevelopersToolbox/github-lister-core/compare/v0.1.0...v0.1.1)
|
|
41
145
|
|
|
42
146
|
> Released on March, 10th 2021
|
|
43
147
|
|
|
44
148
|
- Fixed error where additional information wasn't being decoded from sawyer::resource and returned as JSON [`[5b77168]`](https://github.com/DevelopersToolbox/github-lister-core/commit/5b7716876aabd35b93f55bdc85b3145f9536044c)
|
|
45
149
|
|
|
46
|
-
### [v0.1.
|
|
150
|
+
### [v0.1.0](https://github.com/DevelopersToolbox/github-lister-core/releases/v0.1.0)
|
|
47
151
|
|
|
48
152
|
> Released on March, 8th 2021
|
|
49
153
|
|
|
50
154
|
- Fixing a couple of errors that slipped passed QA testing [`[680fb05]`](https://github.com/DevelopersToolbox/github-lister-core/commit/680fb05098074f347e2057b5c1d444ccb046a709)
|
|
51
155
|
|
|
52
|
-
### [v0.1.0](https://github.com/DevelopersToolbox/github-lister-core/releases/v0.1.0)
|
|
53
|
-
|
|
54
|
-
> Released on March, 8th 2021
|
|
55
|
-
|
|
56
156
|
- The initial commit [`[2f25c81]`](https://github.com/DevelopersToolbox/github-lister-core/commit/2f25c819acbb77e3dfd31351b4d891bd5f426587)
|
|
57
157
|
|
data/Gemfile
CHANGED