diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f37e19b..0fc3bcd 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -2,9 +2,9 @@ name: CodeQL Analysis on: push: - branches: [main] + branches: "**" pull_request: - branches: [main] + branches: "**" schedule: - cron: 00 00 * * 0 diff --git a/.github/workflows/dependabot_automerge.yml b/.github/workflows/dependabot_automerge.yml index 692dd35..6919cb4 100644 --- a/.github/workflows/dependabot_automerge.yml +++ b/.github/workflows/dependabot_automerge.yml @@ -18,7 +18,7 @@ jobs: compat-lookup: true - name: Enable auto-merge for pull request if: ${{ fromJSON(steps.metadata.outputs.compatibility-score) >= 80 }} - run: gh pr merge --auto --merge "$PR_URL" + run: gh pr merge --auto -s "$PR_URL" env: PR_URL: ${{ github.event.pull_request.html_url }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}