diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index ec304f6472..4c71999100 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -4,9 +4,9 @@ name: 'Close stale issues and PRs' on: - workflow_dispatch: - schedule: - - cron: '30 1 * * *' + workflow_dispatch +# schedule: +# - cron: '30 1 * * *' jobs: stale: diff --git a/.github/workflows/verible.yml b/.github/workflows/verible.yml index 87496bc03a..3caa3a2db3 100644 --- a/.github/workflows/verible.yml +++ b/.github/workflows/verible.yml @@ -3,8 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 name: Verible -on: - pull_request_target: +on: [push, pull_request_target] jobs: format: @@ -17,7 +16,10 @@ jobs: - uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} - - uses: chipsalliance/verible-formatter-action@main + - uses: niwis/verible-formatter-action@pulp with: github_token: ${{ secrets.GITHUB_TOKEN }} files: '$(find core -regex ".*\.\(v\|sv\)$" | grep -v "^core/include/.*_config_pkg.sv$")' + fail_on_formatting_suggestions: false + reviewdog_reporter: github-check + reviewdog_fail_on_error: true