Skip to content

Commit

Permalink
[bot] synced file(s) with Wall-Brew-Co/rebroadcast (#222)
Browse files Browse the repository at this point in the history
* [bot] synced local '.cljstyle' with remote 'sources/clojure/.cljstyle'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.clj-kondo/config.edn' with remote 'sources/clojure/cljkondo/config.edn'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/PULL_REQUEST_TEMPLATE.md' with remote 'sources/github-actions/PULL_REQUEST_TEMPLATE.md'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/label.yml' with remote 'sources/github-actions/workflows/label.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/sync_labels.yml' with remote 'sources/github-actions/workflows/sync_labels.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/todo.yml' with remote 'sources/github-actions/workflows/todo.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/contributors.yml' with remote 'sources/github-actions/workflows/contributors.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/greetings.yml' with remote 'sources/github-actions/workflows/greetings.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/clojure.yml' with remote 'sources/github-actions/workflows/clojure.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/deploy_to_clojars.yml' with remote 'sources/github-actions/workflows/deploy_to_clojars.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/format.yml' with remote 'sources/github-actions/workflows/format.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/lint.yml' with remote 'sources/github-actions/workflows/lint.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/scanner.yml' with remote 'sources/github-actions/workflows/scanner.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/cljdoc_test.yml' with remote 'sources/github-actions/workflows/cljdoc_test.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local '.github/workflows/clojurescript.yml' with remote 'sources/github-actions/workflows/clojurescript.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast

* [bot] synced local 'LICENSE' with remote 'sources/templates/LICENSE'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast
  • Loading branch information
WallBrewBot authored Oct 8, 2024
1 parent 02af56c commit a877c20
Show file tree
Hide file tree
Showing 16 changed files with 223 additions and 133 deletions.
3 changes: 2 additions & 1 deletion .clj-kondo/config.edn
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
:refer-all {:exclude #{clojure.test}}
:shadowed-var {:level :warning}
:single-key-in {:level :warning}
:unresolved-symbol {:exclude [(clojure.test/is [match?])
:unresolved-symbol {:exclude [clojure.core/*clojure-version*
(clojure.test/is [match?])
clojure.test.check.clojure-test/defspec]}
:unsorted-required-namespaces {:level :warning}
:used-underscored-binding {:level :warning}
Expand Down
6 changes: 3 additions & 3 deletions .cljstyle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:files {:extensions #{"clj" "cljs" "cljc" "cljx" "edn"}
:ignore #{"target" ".git" ".idea" ".vscode" "node_modules" ".clj-kondo" ".calva" ".lsp"}}
:rules {:namespaces {:enabled? false}
:indentation {:indents {#"defspec" [[:inner 0]]
#"defstate" [[:inner 0]]
#"for-all" [[:inner 0]]}}}}
:indentation {:indents {#"defspec" [[:inner 0]]
#"defstate" [[:inner 0]]
#"for-all" [[:inner 0]]}}}}
19 changes: 14 additions & 5 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,21 @@ Quickly describe your change and the rationale behind it.
Please link to any relevant issues or discussions.

- Additions:
- Updates:
- Deletions:
- { change }
- Changes:
- { change }
- Deprecations:
- { change }
- Removals:
- { change }
- Fixes:
- { change }
- Security:
- { change }

## Pre-merge Checklist

- [ ] Read and agree to the Contribution Guidelines and Code of Conduct
- [ ] Write new tests for the changed functionality
- [ ] Update CHANGELOG and increment version
- [ ] Update README and relevant documentation
- [ ] Write new tests for impacted functionality
- [ ] Update the CHANGELOG and increment version
- [ ] Update the README and other relevant documentation
16 changes: 12 additions & 4 deletions .github/workflows/cljdoc_test.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,39 @@
# Verifies that the project is compatible with cljdoc, and that our documentation will render correctly.
name: Check cljdoc compatibility

on: ["pull_request", "workflow_dispatch"]

jobs:
check-cljdoc:

# Cancel any runs in progress for the same workflow and PR
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.1
- name: Checkout Repository
id: checkout
uses: actions/checkout@v4.2.1

- name: Cache maven dependencies
- name: Cache Maven Dependencies
id: cache-maven
uses: actions/cache@v4
env:
cache-name: cache-maven
with:
path: ~/.m2
save-always: true
key: ${{ runner.os }}-clj-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-clj
- name: Package the library as a jar
- name: Package The Library As A Jar
id: package
run: lein jar

- name: cljdoc Check
id: cljdoc-check
uses: cljdoc/cljdoc-check-action@v0.0.3

# This file was automatically copied and populated by rebroadcast
Expand Down
29 changes: 17 additions & 12 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,41 @@
# Execute Clojure tests using Leiningen
name: Clojure Tests

on: ["workflow_dispatch", "pull_request"]

jobs:
test:

# Cancel any runs in progress for the same workflow and PR
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4.2.1

- name: Cache maven dependencies
uses: actions/cache@v4
env:
- name: Checkout Repository
id: checkout
uses: actions/checkout@v4.2.1

- name: Cache Maven Dependencies
id: cache-maven
uses: actions/cache@v4
env:
cache-name: cache-maven
with:
with:
path: ~/.m2
save-always: true
key: ${{ runner.os }}-clj-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-clj
- name: Install Clojure dependencies
run: lein deps
- name: Install Clojure Dependencies
id: install-deps
run: lein deps

- name: Run all tests
run: lein test
- name: Run All Tests
id: run-tests
run: lein test

# This file was automatically copied and populated by rebroadcast
# Do not edit this file directly, instead modify the source at https://github.com/Wall-Brew-Co/rebroadcast/blob/master/sources/github-actions/workflows/clojure.yml
73 changes: 40 additions & 33 deletions .github/workflows/clojurescript.yml
Original file line number Diff line number Diff line change
@@ -1,53 +1,60 @@
# Executes ClojureScript tests using Leiningen / Karma
name: Clojurescript Tests

on: ["workflow_dispatch", "pull_request"]

jobs:
test:

# Cancel any runs in progress for the same workflow and PR
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4.2.1

- name: Cache maven dependencies
uses: actions/cache@v4
env:
- name: Checkout Repository
id: checkout
uses: actions/checkout@v4.2.1

- name: Cache Maven Dependencies
id: cache-maven
uses: actions/cache@v4
env:
cache-name: cache-maven
with:
with:
path: ~/.m2
save-always: true
key: ${{ runner.os }}-${{ env.cache-name }}-clj-${{ hashFiles('**/project.clj') }}
key: ${{ runner.os }}-clj-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-clj
- name: Cache npm dependencies
id: cache-npm
uses: actions/cache@v4
env:
cache-name: cache-npm
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-clj
- name: Cache npm dependencies
uses: actions/cache@v4
env:
cache-name: cache-npm
with:
path: ~/.npm
save-always: true
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node
- name: Install Clojure/ClojureScript dependencies
run: lein deps

- name: Install node.js dependencies
run: npm install

- name: Build Clojurescript
run: lein cljsbuild once test

- name: Run all tests
run: lein doo once
${{ runner.os }}-node
- name: Install Clojure/ClojureScript Dependencies
id: install-clojure-deps
run: lein deps

- name: Install node.js Dependencies
id: install-node-deps
run: npm install

- name: Build Clojurescript
id: build-cljs
run: lein cljsbuild once test

- name: Run All Tests
id: run-tests
run: lein doo once

# This file was automatically copied and populated by rebroadcast
# Do not edit this file directly, instead modify the source at https://github.com/Wall-Brew-Co/rebroadcast/blob/master/sources/github-actions/workflows/clojurescript.yml
6 changes: 5 additions & 1 deletion .github/workflows/contributors.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# This file is used to generate the contributors image for each repository.
# Repos with more than 2 non-member, non-bot contributors should link this image in their README.
name: Generate Contributors Image
on:
schedule:
Expand All @@ -13,7 +15,9 @@ jobs:
if: github.repository_owner == 'Wall-Brew-Co'
runs-on: ubuntu-latest
steps:
- uses: wow-actions/contributors-list@v1
- name: Generate Contributors Image
id: contributors
uses: wow-actions/contributors-list@v1
with:
GITHUB_TOKEN: ${{ secrets.WALL_BREW_BOT_PAT }}
svgPath: CONTRIBUTORS.svg
Expand Down
77 changes: 47 additions & 30 deletions .github/workflows/deploy_to_clojars.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Deploy the cuurent project to Clojars
# All deployments use the Wall Brew Bot user
name: Deploy to Clojars

on:
Expand All @@ -12,50 +14,65 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4.2.1
- name: Checkout Repository
id: checkout
uses: actions/checkout@v4.2.1

- name: Cache maven dependencies
uses: actions/cache@v4
env:
- name: Cache Maven Dependencies
id: cache-maven
uses: actions/cache@v4
env:
cache-name: cache-maven
with:
with:
path: ~/.m2
save-always: true
key: ${{ runner.os }}-clj-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-clj
- name: Install Clojure dependencies
run: lein deps
- name: Install Clojure Dependencies
id: install-deps
run: lein deps

- name: Validate Changelog Status
run: lein sealog check
# This isn't strictly required to deploy, but is a quality check against our documentation
- name: Validate Changelog Status
id: validate-changelog
run: lein sealog check

- name: Display Version
run: lein sealog version
# This helps us ensure that we are deploying the correct version
- name: Display Version
id: display-version
run: lein sealog version

- name: Run sanity tests
run: lein test
# This is a sanity check to ensure that the project is in a good state
- name: Run Sanity Tests
id: sanity-test
run: lein test

- name: Run build test
run: lein jar
# Compile the project into a jar file
# This is the file that will be deployed to Clojars and is the final gate before deployment
- name: Run Build Test
id: build-test
run: lein jar

- name: Publish to Clojars
env:
CLOJARS_USER: ${{ secrets.CLOJARS_USER }}
CLOJARS_PASS: ${{ secrets.CLOJARS_PASS }}
run: lein deploy clojars
- name: Publish To Clojars
id: publish
env:
CLOJARS_USER: ${{ secrets.CLOJARS_USER }}
CLOJARS_PASS: ${{ secrets.CLOJARS_PASS }}
run: lein deploy clojars

- name: Resolve version
id: versionchk
run: echo "VERSION=$(lein sealog version project.clj | tail -n 1)" >> $GITHUB_OUTPUT
- name: Resolve version
id: versionchk
run: echo "VERSION=$(lein sealog version project.clj | tail -n 1)" >> $GITHUB_OUTPUT

- name: Push Tag
uses: hole19/git-tag-action@v1.0
env:
TAG: v${{ steps.versionchk.outputs.VERSION }}
GITHUB_TOKEN: ${{ secrets.WALL_BREW_BOT_PAT }}
# Push a tag to the repository to mark the version
# This also helps Renovate locate Change Notes for dependency update PRs
- name: Push Tag
id: push-tag
uses: hole19/git-tag-action@v1.0
env:
TAG: v${{ steps.versionchk.outputs.VERSION }}
GITHUB_TOKEN: ${{ secrets.WALL_BREW_BOT_PAT }}

# This file was automatically copied and populated by rebroadcast
# Do not edit this file directly, instead modify the source at https://github.com/Wall-Brew-Co/rebroadcast/blob/master/sources/github-actions/workflows/deploy_to_clojars.yml
14 changes: 11 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Automatically format clojure code using cljstyle
# For more information, please visit: https://github.com/Wall-Brew-Co/open-source/blob/master/README.md#automating-opinions
name: Formatter

on: [pull_request]
Expand All @@ -10,22 +12,28 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: git checkout
# Checkout the repository with our Wall Brew Bot Token
# We need this so any changes can be committed back to the repository
- name: Checkout Repository
id: checkout
uses: actions/checkout@v4.2.1
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.WALL_BREW_BOT_PAT }}

- name: Install cljstyle
id: install-cljstyle
uses: just-sultanov/setup-cljstyle@v1
with:
version: '0.14.0'

- name: Format Clojure code
- name: Format Clojure Code
id: format
run: |
cljstyle fix --report --report-timing --verbose
- name: Commit changes
- name: Commit Changes
id: commit
uses: stefanzweifel/git-auto-commit-action@v5.0.1
with:
commit_message: |
Expand Down
Loading

0 comments on commit a877c20

Please sign in to comment.