Skip to content

Commit

Permalink
[bot] synced file(s) with Wall-Brew-Co/rebroadcast (#98)
Browse files Browse the repository at this point in the history
* [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/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/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
  • Loading branch information
WallBrewBot authored Sep 21, 2024
1 parent 0efbc0d commit e09760d
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:

jobs:
contributors:
# This job requires the Wall Brew Bot Token, so it is only run on non-forked repositories
if: github.repository_owner == 'Wall-Brew-Co'
runs-on: ubuntu-latest
steps:
- uses: wow-actions/contributors-list@v1
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/deploy_to_clojars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:

jobs:
deploy:
# This job requires the Wall Brew Bot Token, so it is only run on non-forked repositories
if: github.repository_owner == 'Wall-Brew-Co'

runs-on: ubuntu-latest

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on: [pull_request]

jobs:
formatting:
# This job requires the Wall Brew Bot Token, so it is only run on non-forked repositories
if: github.repository_owner == 'Wall-Brew-Co'

runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on: [pull_request, issues]

jobs:
greeting:
# This job requires the Wall Brew Bot Token, so it is only run on non-forked repositories
if: github.repository_owner == 'Wall-Brew-Co'
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v1
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on: [pull_request]

jobs:
label:
# This job requires the Wall Brew Bot Token, so it is only run on non-forked repositories
if: github.repository_owner == 'Wall-Brew-Co'

runs-on: ubuntu-latest

Expand Down
43 changes: 42 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: Linter
on: [pull_request, workflow_dispatch]

on: ["push", "workflow_dispatch", "pull_request"]

jobs:
spell-check:
# This job requires the Wall Brew Bot Token, so it is only run on non-forked repositories
if: github.repository_owner == 'Wall-Brew-Co'

runs-on: ubuntu-latest

steps:
Expand All @@ -23,6 +27,9 @@ jobs:
# Brewing applications support both US and non-US English

clj-kondo:
# This job requires the Wall Brew Bot Token, so it is only run on non-forked repositories
if: github.repository_owner == 'Wall-Brew-Co'

runs-on: ubuntu-latest

steps:
Expand All @@ -48,8 +55,42 @@ jobs:
with:
ref: ${{ github.head_ref }}

- name: Cache maven dependencies
uses: actions/cache@v4
env:
cache-name: cache-maven
with:
path: ~/.m2
save-always: true
key: ${{ runner.os }}-clj-lint-sealog-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-clj
- name: Validate Sealog Entries
run: lein sealog check

bouncer:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4.1.7
with:
ref: ${{ github.head_ref }}

- name: Cache maven dependencies
uses: actions/cache@v4
env:
cache-name: cache-maven
with:
path: ~/.m2
save-always: true
key: ${{ runner.os }}-clj-lint-bouncer-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-clj
- name: Validate Sealog Entries
run: lein bouncer check

# 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/lint.yml

0 comments on commit e09760d

Please sign in to comment.