From 7cacc300dfbb76608c988f4b8165c01ffb13eca0 Mon Sep 17 00:00:00 2001 From: ci-atlas-bot <158276885+ci-atlas-bot@users.noreply.github.com> Date: Thu, 21 Mar 2024 13:43:11 +0100 Subject: [PATCH 1/3] Add catalog.yaml config [skip ci] --- .customink/catalog.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .customink/catalog.yaml diff --git a/.customink/catalog.yaml b/.customink/catalog.yaml new file mode 100644 index 00000000..103a919a --- /dev/null +++ b/.customink/catalog.yaml @@ -0,0 +1,28 @@ +name: CASino + +owner: vhost # team definitions at https://app.opslevel.com/teams + +purpose: # multiple choice + # - do_not_track # demo testing personal - will not be tracked in catalog + # - app + - library + # - configuration + # - other # example: frontend_dataset +deployment_type: # multiple choice + # - kubernetes + # - infrastructure_serverless + - package + # - cli + # - 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 From d4c8adca54bbc85273781bfbadfd1a44f05056ba Mon Sep 17 00:00:00 2001 From: ci-atlas-bot <158276885+ci-atlas-bot@users.noreply.github.com> Date: Tue, 27 Feb 2024 20:01:31 +0100 Subject: [PATCH 2/3] Add stale.yml config --- .github/workflows/stale.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..db01c367 --- /dev/null +++ b/.github/workflows/stale.yml @@ -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 }} From f23ee8e2c66f088bf3c2674dc30d2d75c9546fc8 Mon Sep 17 00:00:00 2001 From: "Christopher R. Murphy" Date: Thu, 25 Apr 2024 12:08:31 -0400 Subject: [PATCH 3/3] Change team ownership to Premium Blend --- .customink/CODEOWNERS | 1 + .customink/catalog.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .customink/CODEOWNERS diff --git a/.customink/CODEOWNERS b/.customink/CODEOWNERS new file mode 100644 index 00000000..8c7351db --- /dev/null +++ b/.customink/CODEOWNERS @@ -0,0 +1 @@ +* @customink/premium-blend diff --git a/.customink/catalog.yaml b/.customink/catalog.yaml index 103a919a..43a93824 100644 --- a/.customink/catalog.yaml +++ b/.customink/catalog.yaml @@ -1,6 +1,6 @@ name: CASino -owner: vhost # team definitions at https://app.opslevel.com/teams +owner: premium-blend # team definitions at https://app.opslevel.com/teams purpose: # multiple choice # - do_not_track # demo testing personal - will not be tracked in catalog