-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ops Level Updates - GIGO ActiveRecord (#9)
* Updated gemspec with updated author & email info * Add CODEOWNERS * Handling stale Github PR's * Add catalog.yaml for Ops Level purposes
- Loading branch information
1 parent
e935047
commit 5fbfba5
Showing
4 changed files
with
55 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: gigo-activerecord | ||
|
||
owner: tailor-made # team definitions at https://app.opslevel.com/teams | ||
|
||
purpose: # multiple choice | ||
# - app | ||
# - demo | ||
- library | ||
# - configuration | ||
# - other | ||
deployment_type: # multiple choice | ||
# - kubernetes | ||
# - infrastructure_serverless | ||
- package | ||
# - cli-only | ||
# - data | ||
# - docker-image | ||
|
||
# tier: tier_1 # Mission-critical service or repository. Failure could result in significant impact to revenue or reputation. | ||
# tier: tier_2 # Customer-facing service or repository. Failure results in degraded experience for customers, although without significant impact to revenue or reputation. | ||
# tier: tier_3 # Internal service or repository. Failure could result in productivity being compromised within the company. | ||
# tier: tier_4 # Other service or repository. Failure doesn't result in immediate or significant impact. | ||
tier: tier_na # this repo does not have a tier. typically libraries | ||
|
||
properties: | ||
public_facing: false | ||
pci: false | ||
pii: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @customink/tailor-made |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Bump/Close inactive PRs | ||
on: | ||
schedule: | ||
- cron: "0 5 * * *" | ||
|
||
jobs: | ||
close-issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
days-before-pr-stale: 30 | ||
days-before-pr-close: 90 | ||
|
||
stale-pr-label: "stale" | ||
stale-pr-message: "This PR is open and inactive for 30 days. Merging PRs open after a long time is error-prone. Please proceed to merging or make a comment to keep it open. You can also prevent PRs from being tagged stale or closed with 'keep-open' tag. If there is no activity in 90 days, this PR will be closed" | ||
close-pr-message: "This PR was closed because it has been inactive for 90 days since being marked as stale." | ||
|
||
exempt-pr-labels: "keep-open,dependabot,dependencies" | ||
|
||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ require 'gigo/active_record/version' | |
Gem::Specification.new do |spec| | ||
spec.name = "gigo-activerecord" | ||
spec.version = GIGO::ActiveRecord::VERSION | ||
spec.authors = ["Ken Collins"] | ||
spec.email = ["[email protected]"] | ||
spec.authors = ["Ken Collins", "Tailor Made"] | ||
spec.email = ["[email protected]", "[email protected]"] | ||
spec.description = 'GIGO for ActiveRecord' | ||
spec.summary = 'GIGO for ActiveRecord' | ||
spec.homepage = 'http://github.com/customink/gigo-activerecord' | ||
|