From 8803fec84987682b0955dcab5534a8dd9496666e Mon Sep 17 00:00:00 2001 From: Vitor Hugo Salgado <2922948+vitorsalgado@users.noreply.github.com> Date: Tue, 20 Feb 2024 21:22:24 +0100 Subject: [PATCH] chore: disable some stuff --- .github/codeql/codeql-config.yml | 12 ------- .github/dependabot.yml | 13 ------- .github/workflows/ci.yml | 9 ----- .github/workflows/codeql-analysis.yml | 52 --------------------------- 4 files changed, 86 deletions(-) delete mode 100644 .github/codeql/codeql-config.yml delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/codeql/codeql-config.yml b/.github/codeql/codeql-config.yml deleted file mode 100644 index f3e5dbc..0000000 --- a/.github/codeql/codeql-config.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: "CodeQL Config" - -queries: - - uses: security-and-quality - -paths: - - src -paths-ignore: - - node_modules - - dist - - '**/*.spec.js' - - '**/*.spec.ts' diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 7826a9f..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: 2 -updates: - - package-ecosystem: github-actions - directory: "/" - schedule: - interval: daily - open-pull-requests-limit: 10 - - - package-ecosystem: npm - directory: "/" - schedule: - interval: daily - open-pull-requests-limit: 10 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4c47e9..0d213e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,12 +59,3 @@ jobs: heroku container:login heroku container:push -a $HEROKU_APP web heroku container:release -a $HEROKU_APP web - - automerge: - needs: - - test - runs-on: ubuntu-latest - steps: - - uses: fastify/github-action-merge-dependabot@v2.7.1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index f20137b..0000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: "code-ql" - -on: - push: - branches: - - main - - '[0-9]+.x' - paths-ignore: - - 'docs/**' - - '*.md' - pull_request: - branches: - - main - - '[0-9]+.x' - paths-ignore: - - 'docs/**' - - '*.md' - - schedule: - - cron: '0 15 * * 0' - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - - strategy: - fail-fast: false - matrix: - language: [ 'javascript' ] - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v1 - with: - languages: ${{ matrix.language }} - config-file: ./.github/codeql/codeql-config.yml - - - name: Use Node - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - - - name: Install + Build - run: | - make deps - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1