diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 755e981..0c302b0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,7 +9,13 @@ updates: directory: / schedule: interval: "weekly" + commit-message: + # Prefix commit message with "chore: " + prefix: "chore" - package-ecosystem: pip directory: / schedule: interval: "weekly" + commit-message: + # Prefix commit message with "chore: " + prefix: "chore" diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index ecc47aa..88e14a4 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -2,8 +2,9 @@ name: Run pre-commit on: push: + branches: [main] pull_request: - types: opened + branches: [main] jobs: pre-commit: diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 9094467..26148f8 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5 - name: Set up Python 3.10 - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5 + uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c #v5 with: python-version: "3.10" @@ -60,7 +60,7 @@ jobs: - uses: actions/checkout@v5 - name: Set up Python 3.10 - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5 + uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c #v5 with: python-version: "3.10" @@ -83,7 +83,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Set up Python 3.10 - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5 + uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c #v5 with: python-version: "3.10"