diff --git a/.github/pr-title-checker.json b/.github/pr-title-checker.json deleted file mode 100644 index ba37ae9..0000000 --- a/.github/pr-title-checker.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "LABEL": { - "name": "title needs formatting", - "color": "F9D0C4" - }, - "CHECKS": { - "prefixes": [ - "build: ", - "chore: ", - "docs: ", - "feat: ", - "fix: ", - "perf: ", - "refactor: ", - "revert: ", - "style: ", - "test: " - ] - }, - "MESSAGES": { - "success": "Everything is great. Status: 200", - "failure": "PR title does not conform to the required format. Please use one of the specified prefixes followed by a colon and a space. Status: 400", - "notice": "" - } - } \ No newline at end of file diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index cfba45d..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: 'CodeQL' - -on: - push: - branches: ['main'] - pull_request: - branches: ['main'] - schedule: - - cron: '19 19 * * 0' - -jobs: - analyze: - name: Analyze - runs-on: ${{ (matrix.language == 'javascript' && 'ubuntu-latest') || 'windows-latest' }} - timeout-minutes: ${{ (matrix.language == 'javascript' && 120) || 360 }} - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: ['javascript'] - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - - - name: Autobuild - uses: github/codeql-action/autobuild@v3 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: '/language:${{matrix.language}}' diff --git a/.github/workflows/pr-title-checker.yml b/.github/workflows/pr-title-checker.yml deleted file mode 100644 index dd365fb..0000000 --- a/.github/workflows/pr-title-checker.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: 'PR Title Checker' -on: - pull_request_target: - types: - - opened - - edited - - synchronize - - labeled - - unlabeled - -jobs: - check: - runs-on: ubuntu-latest - steps: - - uses: thehanimo/pr-title-checker@v1.3.7 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - pass_on_octokit_error: false - configuration_path: '.github/pr-title-checker.json' \ No newline at end of file