From af0ebdd8493749c594a8ba41091e25acd7e59875 Mon Sep 17 00:00:00 2001 From: Christine Belzie Date: Sat, 2 Sep 2023 16:46:34 -0400 Subject: [PATCH 1/9] docs: add explainer page about Dev Card feature --- docs/community/dev-card.md | 0 sidebars.js | 1 + 2 files changed, 1 insertion(+) create mode 100644 docs/community/dev-card.md diff --git a/docs/community/dev-card.md b/docs/community/dev-card.md new file mode 100644 index 00000000..e69de29b diff --git a/sidebars.js b/sidebars.js index 97946ec6..ec09f9b3 100644 --- a/sidebars.js +++ b/sidebars.js @@ -22,6 +22,7 @@ module.exports = { "community/highlights", "community/insights", "community/faqs", + "community/dev-card", ], }, { From 98f6a7283456c654291fd5fe5bfc766cd7e0183f Mon Sep 17 00:00:00 2001 From: Christine Belzie Date: Sun, 3 Sep 2023 00:33:50 -0400 Subject: [PATCH 2/9] docs: add explainer page about the dev card --- docs/community/dev-card.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/community/dev-card.md b/docs/community/dev-card.md index e69de29b..fb5dd05a 100644 --- a/docs/community/dev-card.md +++ b/docs/community/dev-card.md @@ -0,0 +1,9 @@ +--- +id: dev-card +title: 'Showcase your open source stats with your dev card' +sidebar_label: 'Dev Card' +keywords: +- dev-card +--- + +The Dev card feature is what we like to call your "open source business card". It displays the amount of pull requests you create, repositories you contribute to, and how often you are active in the community. Whether you are a person who's just beginning their open source journey or a maintainer looking for more contributors and/or sponsors, the dev card is a great way to show your audience how active you are in the community. From 4dc016e1486f2c1fa1d0c27f3f25b24a23900e08 Mon Sep 17 00:00:00 2001 From: Christine Belzie Date: Sun, 3 Sep 2023 01:00:42 -0400 Subject: [PATCH 3/9] Revert "docs: add explainer page about the dev card" This reverts commit 98f6a7283456c654291fd5fe5bfc766cd7e0183f. --- docs/community/dev-card.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/docs/community/dev-card.md b/docs/community/dev-card.md index fb5dd05a..e69de29b 100644 --- a/docs/community/dev-card.md +++ b/docs/community/dev-card.md @@ -1,9 +0,0 @@ ---- -id: dev-card -title: 'Showcase your open source stats with your dev card' -sidebar_label: 'Dev Card' -keywords: -- dev-card ---- - -The Dev card feature is what we like to call your "open source business card". It displays the amount of pull requests you create, repositories you contribute to, and how often you are active in the community. Whether you are a person who's just beginning their open source journey or a maintainer looking for more contributors and/or sponsors, the dev card is a great way to show your audience how active you are in the community. From f8bbc837133fa588434571053b389e48859c9c9f Mon Sep 17 00:00:00 2001 From: "codesee-maps[bot]" <86324825+codesee-maps[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 15:21:33 +0000 Subject: [PATCH 4/9] Install the CodeSee workflow. Learn more at https://docs.codesee.io --- .github/workflows/codesee-arch-diagram.yml | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/codesee-arch-diagram.yml diff --git a/.github/workflows/codesee-arch-diagram.yml b/.github/workflows/codesee-arch-diagram.yml new file mode 100644 index 00000000..806d41d1 --- /dev/null +++ b/.github/workflows/codesee-arch-diagram.yml @@ -0,0 +1,23 @@ +# This workflow was added by CodeSee. Learn more at https://codesee.io/ +# This is v2.0 of this workflow file +on: + push: + branches: + - main + pull_request_target: + types: [opened, synchronize, reopened] + +name: CodeSee + +permissions: read-all + +jobs: + codesee: + runs-on: ubuntu-latest + continue-on-error: true + name: Analyze the repo with CodeSee + steps: + - uses: Codesee-io/codesee-action@v2 + with: + codesee-token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }} + codesee-url: https://app.codesee.io From 1f326ba0bf9f0824eb0174d7fc1ba0b4997d334a Mon Sep 17 00:00:00 2001 From: Christine Belzie Date: Mon, 23 Oct 2023 17:55:07 -0400 Subject: [PATCH 5/9] feat: add code for vale linter --- .github/workflows/compliance.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/compliance.yml b/.github/workflows/compliance.yml index d1d42087..95fb0907 100644 --- a/.github/workflows/compliance.yml +++ b/.github/workflows/compliance.yml @@ -13,3 +13,14 @@ permissions: jobs: compliance: uses: open-sauced/hot/.github/workflows/compliance.yml@main +name: reviewdog +on: [pull_request] + +jobs: + vale: + name: runner / vale + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: errata-ai/vale-action@reviewdog + files: "* .md" \ No newline at end of file From e22e91389d5e50c97293c4075bcce1038e1f4f50 Mon Sep 17 00:00:00 2001 From: Christine Belzie <105683440+CBID2@users.noreply.github.com> Date: Sun, 29 Oct 2023 00:12:06 -0400 Subject: [PATCH 6/9] fix: omit reviewdog Co-authored-by: Nick McCurdy --- .github/workflows/compliance.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/compliance.yml b/.github/workflows/compliance.yml index 95fb0907..1d508db3 100644 --- a/.github/workflows/compliance.yml +++ b/.github/workflows/compliance.yml @@ -13,7 +13,6 @@ permissions: jobs: compliance: uses: open-sauced/hot/.github/workflows/compliance.yml@main -name: reviewdog on: [pull_request] jobs: From bcd3e718902c7855a8719c5bef783ba93d752607 Mon Sep 17 00:00:00 2001 From: Christine Belzie Date: Mon, 30 Oct 2023 19:46:57 -0400 Subject: [PATCH 7/9] fix: revising value --- .github/workflows/compliance.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compliance.yml b/.github/workflows/compliance.yml index 1d508db3..ef0447ea 100644 --- a/.github/workflows/compliance.yml +++ b/.github/workflows/compliance.yml @@ -21,5 +21,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: errata-ai/vale-action@reviewdog - files: "* .md" \ No newline at end of file + - with: errata-ai/vale-action@reviewdog + files: "path/to/*md" \ No newline at end of file From b7c0dcc3adb5d3f5694451e3efff5c54bc33eba9 Mon Sep 17 00:00:00 2001 From: Christine Belzie Date: Mon, 30 Oct 2023 19:48:19 -0400 Subject: [PATCH 8/9] fix: value --- .github/workflows/compliance.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compliance.yml b/.github/workflows/compliance.yml index ef0447ea..f169a0a0 100644 --- a/.github/workflows/compliance.yml +++ b/.github/workflows/compliance.yml @@ -22,4 +22,4 @@ jobs: steps: - uses: actions/checkout@v3 - with: errata-ai/vale-action@reviewdog - files: "path/to/*md" \ No newline at end of file + files: "path/to/.md" \ No newline at end of file From 208da5369f142eb68610cc6434a7d01d07b3d26f Mon Sep 17 00:00:00 2001 From: Christine Belzie Date: Mon, 30 Oct 2023 20:27:45 -0400 Subject: [PATCH 9/9] fix: revise formatting Co-authored-by: Kyle a.k.a. TechSquidTV --- .github/workflows/compliance.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/compliance.yml b/.github/workflows/compliance.yml index f169a0a0..471ab0ad 100644 --- a/.github/workflows/compliance.yml +++ b/.github/workflows/compliance.yml @@ -10,16 +10,17 @@ on: permissions: pull-requests: write +# The error here is the two job keys. +# The other issues were similar, and one indentation issue - Kyle / TechSquidTV +# fixed jobs: compliance: uses: open-sauced/hot/.github/workflows/compliance.yml@main -on: [pull_request] - -jobs: vale: name: runner / vale runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - with: errata-ai/vale-action@reviewdog - files: "path/to/.md" \ No newline at end of file + - uses: errata-ai/vale-action@reviewdog + with: + files: "path/to/.md"