diff --git a/.github/workflows/cljdoc_test.yml b/.github/workflows/cljdoc_test.yml index 44edd86..453052b 100644 --- a/.github/workflows/cljdoc_test.yml +++ b/.github/workflows/cljdoc_test.yml @@ -13,6 +13,18 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -44,6 +56,10 @@ jobs: restore-keys: | ${{ runner.os }}-clj + - name: Install Clojure Dependencies + id: install-deps + run: lein deps + - name: Echo Leiningen Version id: lein-version run: lein -v @@ -56,5 +72,9 @@ jobs: id: cljdoc-check uses: cljdoc/cljdoc-check-action@v0.0.3 + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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/cljdoc_test.yml diff --git a/.github/workflows/clojure.yml b/.github/workflows/clojure.yml index 202315d..fc94bd4 100644 --- a/.github/workflows/clojure.yml +++ b/.github/workflows/clojure.yml @@ -14,6 +14,18 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -45,17 +57,21 @@ jobs: restore-keys: | ${{ runner.os }}-clj - - name: Echo Leiningen Version - id: lein-version - run: lein -v - - name: Install Clojure Dependencies id: install-deps run: lein deps + - name: Echo Leiningen Version + id: lein-version + run: lein -v + - name: Run All Tests id: run-tests run: lein test + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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 diff --git a/.github/workflows/clojurescript.yml b/.github/workflows/clojurescript.yml index b56d2c1..83a058d 100644 --- a/.github/workflows/clojurescript.yml +++ b/.github/workflows/clojurescript.yml @@ -14,6 +14,18 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -56,14 +68,14 @@ jobs: restore-keys: | ${{ runner.os }}-node - - name: Echo Leiningen Version - id: lein-version - run: lein -v - - name: Install Clojure/ClojureScript Dependencies id: install-clojure-deps run: lein deps + - name: Echo Leiningen Version + id: lein-version + run: lein -v + - name: Install node.js Dependencies id: install-node-deps run: npm install @@ -76,5 +88,9 @@ jobs: id: run-tests run: lein doo once + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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 diff --git a/.github/workflows/contributors.yml b/.github/workflows/contributors.yml index 37059ff..834b306 100644 --- a/.github/workflows/contributors.yml +++ b/.github/workflows/contributors.yml @@ -15,6 +15,18 @@ jobs: if: github.repository_owner == 'Wall-Brew-Co' runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Generate Contributors Image id: contributors uses: wow-actions/contributors-list@v1 @@ -23,5 +35,9 @@ jobs: svgPath: CONTRIBUTORS.svg affiliation: all + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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/contributors.yml diff --git a/.github/workflows/deploy_to_clojars.yml b/.github/workflows/deploy_to_clojars.yml index 567008c..618a772 100644 --- a/.github/workflows/deploy_to_clojars.yml +++ b/.github/workflows/deploy_to_clojars.yml @@ -14,6 +14,18 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -45,14 +57,14 @@ jobs: restore-keys: | ${{ runner.os }}-clj - - name: Echo Leiningen Version - id: lein-version - run: lein -v - - name: Install Clojure Dependencies id: install-deps run: lein deps + - name: Echo Leiningen Version + id: lein-version + run: lein -v + # This isn't strictly required to deploy, but is a quality check against our documentation - name: Validate Changelog Status id: validate-changelog @@ -94,5 +106,9 @@ jobs: TAG: v${{ steps.versionchk.outputs.VERSION }} GITHUB_TOKEN: ${{ secrets.WALL_BREW_BOT_PAT }} + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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 diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 56c1aa3..ae2e382 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -12,6 +12,18 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + # 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 @@ -49,5 +61,9 @@ jobs: commit_message: | [Format] Auto-formatting + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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/format.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index e0fb0fb..0dd0990 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -9,6 +9,18 @@ jobs: if: github.repository_owner == 'Wall-Brew-Co' runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Greet New Contributors id: greet uses: actions/first-interaction@v1 @@ -17,5 +29,9 @@ jobs: issue-message: 'Thank you for taking the time to let us know!' pr-message: 'Congratulations! This is your first contribution!' + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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/greetings.yml diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index 5ed0494..f921788 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -11,11 +11,27 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Label Pull Requests id: label uses: actions/labeler@v5 with: repo-token: "${{ secrets.WALL_BREW_BOT_PAT }}" + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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/label.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0e54775..2249140 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,6 +12,18 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -30,6 +42,10 @@ jobs: ignore: "litre,millilitre,litres,millilitres" # Brewing applications support both US and non-US English + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + 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' @@ -37,6 +53,18 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -52,11 +80,27 @@ jobs: level: error filter_mode: file + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # https://github.com/Wall-Brew-Co/lein-sealog sealog: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -90,6 +134,10 @@ jobs: restore-keys: | ${{ runner.os }}-clj + - name: Install Clojure Dependencies + id: install-deps + run: lein deps + - name: Echo Leiningen Version id: lein-version run: lein -v @@ -98,11 +146,27 @@ jobs: id: validate-changelog run: lein sealog check + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # https://github.com/Wall-Brew-Co/bouncer bouncer: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -136,6 +200,10 @@ jobs: restore-keys: | ${{ runner.os }}-clj + - name: Install Clojure Dependencies + id: install-deps + run: lein deps + - name: Echo Leiningen Version id: lein-version run: lein -v @@ -144,5 +212,9 @@ jobs: id: validate-bouncer run: lein bouncer check + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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 diff --git a/.github/workflows/scanner.yml b/.github/workflows/scanner.yml index 075883b..b2a9aeb 100644 --- a/.github/workflows/scanner.yml +++ b/.github/workflows/scanner.yml @@ -23,6 +23,18 @@ jobs: contents: read security-events: write steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -41,5 +53,9 @@ jobs: with: sarif_file: ${{github.workspace}}/clj-holmes-results.sarif + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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/scanner.yml diff --git a/.github/workflows/sync_labels.yml b/.github/workflows/sync_labels.yml index e1c3b33..b1ca8a7 100644 --- a/.github/workflows/sync_labels.yml +++ b/.github/workflows/sync_labels.yml @@ -13,6 +13,18 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -25,5 +37,9 @@ jobs: with: manifest: .github/labels.yml + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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/sync_labels.yml diff --git a/.github/workflows/todo.yml b/.github/workflows/todo.yml index a3b5d61..40a152a 100644 --- a/.github/workflows/todo.yml +++ b/.github/workflows/todo.yml @@ -12,6 +12,18 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo Trigger + id: echo-trigger + run: echo "Job triggered by ${{ github.event_name }}" + + - name: Echo Runner OS + id: echo-runner-os + run: echo "Job running on ${{ runner.os }} server" + + - name: Echo Git Ref + id: echo-git-ref + run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" + - name: Checkout Repository id: checkout uses: actions/checkout@v4.2.2 @@ -28,5 +40,9 @@ jobs: ROOT: "src" # This is scoped to /src to prevent accidental discovery of comments in node_modules, git hooks, etc. + - name: Echo Status + id: echo-status + run: echo "Job status is ${{ job.status }}." + # 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/todo.yml