diff --git a/.github/workflows/housekeeping.yml b/.github/workflows/housekeeping.yml index d0c589ea7a0..fd789a66460 100644 --- a/.github/workflows/housekeeping.yml +++ b/.github/workflows/housekeeping.yml @@ -8,6 +8,8 @@ on: jobs: project: + # ignore dependabot PRs + if: ${{ github.actor != 'dependabot[bot]' }} name: Add issues and PRs to project and add grooming label uses: celestiaorg/.github/.github/workflows/reusable_housekeeping.yml@v0.1.1 secrets: inherit @@ -16,7 +18,7 @@ jobs: pull-requests: write with: run-labels: true - labels-to-add: 'needs-grooming' + labels-to-add: "needs-grooming" run-projects: true project-url: https://github.com/orgs/rollkit/projects/7 @@ -32,6 +34,8 @@ jobs: run-auto-request-review: true auto-add-assignee: + # ignore dependabot PRs + if: ${{ github.actor != 'dependabot[bot]' }} name: Assign issue and PR to creator runs-on: ubuntu-latest permissions: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 97ae2f72947..385bacd5bd8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,7 @@ jobs: go-version: ${{ inputs.GO_VERSION }} - name: Test & Coverage run: make cover - - uses: codecov/codecov-action@v3.1.3 + - uses: codecov/codecov-action@v3.1.4 with: file: ./coverage.txt