diff --git a/.github/workflows/CICD-base.yaml b/.github/workflows/CICD-base.yaml deleted file mode 100644 index 910e0b2..0000000 --- a/.github/workflows/CICD-base.yaml +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: CICD-base - -on: - push: - branches: - - main - pull_request: - branches: - - main -jobs: - CICD-base: - runs-on: ubuntu-latest - - timeout-minutes: 15 - - steps: - # Checkout codebase - - name: Checkout - uses: actions/checkout@v2 - - # Run CICD-base - - name: CICD-base - uses: docker://ghcr.io/uclahs-cds/cicd-base:latest diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml new file mode 100644 index 0000000..ccfdabb --- /dev/null +++ b/.github/workflows/static-analysis.yml @@ -0,0 +1,17 @@ +--- +name: CI + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + static-analysis: + runs-on: ubuntu-latest + + steps: + - uses: uclahs-cds/tool-static-analysis@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d9a5e1..9e8e070 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm --- ## [Unreleased] + +## Changed +- "Dogfood" action to check itself + +## [v1.0.0] - 2024-04-18 + ### Added - Add README documentation about usage and versioning - Bootstrap Action for static analysis diff --git a/README.md b/README.md index 2a723f4..8f56410 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Run static analyses for code style, linting, and repository configuration. ## Usage ```yaml --- -name: Static analysis +name: CI on: push: @@ -16,7 +16,7 @@ on: - main jobs: - analysis: + static-analysis: runs-on: ubuntu-latest steps: