diff --git a/inst/pre-commit-gha.yaml b/inst/pre-commit-gha.yaml index b57e11995..1fd973211 100644 --- a/inst/pre-commit-gha.yaml +++ b/inst/pre-commit-gha.yaml @@ -1,21 +1,15 @@ name: pre-commit on: push: - branches-ignore: + branches: - 'master' - 'main' pull_request: - types: [opened, synchronize, reopened, ready_for_review] jobs: - pre-commit: - runs-on: ubuntu-18.04 - if: >- - !contains(github.event.head_commit.message, 'ci skip') && - ( - startsWith(github.ref, 'refs/heads') || - github.event.pull_request.draft == false - ) + main: + runs-on: ubuntu-latest + if: !contains(github.event.head_commit.message, 'ci skip') steps: - name: Cancel Previous Runs uses: styfle/cancel-workflow-action@0.6.0 @@ -25,31 +19,18 @@ jobs: with: fetch-depth: 0 - name: Install system dependencies - if: runner.os == 'Linux' run: | # your system installation code here # sudo apt-get install -y libcurl4-openssl-dev - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.8" + python-version: "3.11" architecture: "x64" - name: Run pre-commit - uses: pre-commit/action@v2.0.3 - - name: Commit files - if: failure() && startsWith(github.ref, 'refs/heads') - run: | - if [[ `git status --porcelain --untracked-files=no` ]]; then - git config --local user.email "github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git checkout -- .github/workflows - git commit -m "pre-commit" -a - fi - - name: Push changes - if: failure() && startsWith(github.ref, 'refs/heads') - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} + uses: pre-commit/action@v3.0.0 + - uses: pre-commit-ci/lite-action@v1.0.1 + if: always() + env: RENV_CONFIG_CACHE_ENABLED: FALSE diff --git a/vignettes/ci.Rmd b/vignettes/ci.Rmd index 5a6be7cd9..825dd63ee 100644 --- a/vignettes/ci.Rmd +++ b/vignettes/ci.Rmd @@ -128,14 +128,6 @@ options. **Cons:** -- out-of-the-box action is in [maintenance only - mode](https://github.com/pre-commit/action) and less feature - complete than [pre-commit.ci](https://pre-commit.ci). For example, - if your hooks fail on first attempt, the corrections are committed - and pushed, but they won't trigger a new CI and you can't make them - do it without [exposing - credentials](https://github.com/pre-commit/action/pull/49). The only - way is to close and re-open the PR. - No configuration options such as hook skipping supported that [pre-commit.ci](https://pre-commit.ci) supports. - You need to maintain the workflow file with a lot of boilerplate