diff --git a/.github/workflows/semantic_pull_request.yml b/.github/workflows/semantic_pull_request.yml deleted file mode 100644 index b0a2e7e..0000000 --- a/.github/workflows/semantic_pull_request.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Semantic Pull Request Workflow - -on: - workflow_call: - inputs: - types: - required: false - type: string - scopes: - required: false - type: string - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: 🤖 Ensure Commit is Semantic - if: github.event_name == 'pull_request' - uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f # v5.4.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - types: ${{inputs.types}} - scopes: ${{inputs.scopes}} - validateSingleCommit: false - ignoreLabels: | - bot - ignore-semantic-pull-request - wip: false \ No newline at end of file diff --git a/.github/workflows/spell_check.yml b/.github/workflows/spell_check.yml deleted file mode 100644 index 8ba000e..0000000 --- a/.github/workflows/spell_check.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: Spell Check Workflow - -on: - workflow_call: - inputs: - config: - required: false - type: string - default: ".github/cspell.json" - includes: - required: false - type: string - default: "" - runs_on: - required: false - type: string - default: "ubuntu-latest" - verbose: - required: false - type: boolean - default: false - modified_files_only: - required: false - type: boolean - default: true - working_directory: - required: false - type: string - default: "." - -jobs: - build: - defaults: - run: - working-directory: ${{inputs.working_directory}} - - runs-on: ${{inputs.runs_on}} - - steps: - - name: 📚 Git Checkout - uses: actions/checkout@v4 - - - name: 🪄 Spell Check - uses: streetsidesoftware/cspell-action@v5 - with: - config: ${{inputs.config}} - files: ${{inputs.includes}} - incremental_files_only: ${{inputs.modified_files_only}} - root: ${{inputs.working_directory}} - verbose: ${{inputs.verbose}} \ No newline at end of file