From 3be01281a236ca945a71118d14dfa026739c25be Mon Sep 17 00:00:00 2001 From: Indrajeet Patil Date: Wed, 27 Sep 2023 16:31:37 +0200 Subject: [PATCH] expt over [skip ci] --- .../workflows/update-to-latest-easystats.yml | 54 ------------------- 1 file changed, 54 deletions(-) delete mode 100644 .github/workflows/update-to-latest-easystats.yml diff --git a/.github/workflows/update-to-latest-easystats.yml b/.github/workflows/update-to-latest-easystats.yml deleted file mode 100644 index 90f6f3fc3..000000000 --- a/.github/workflows/update-to-latest-easystats.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: update-to-latest-easystats - -on: - push: - branches: [main, master] - pull_request: - branches: [main, master] - -# Run on a schedule (once a month) -# schedule: -# - cron: "0 0 1 * *" - -jobs: - update-to-latest-easystats: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Set up R - uses: r-lib/actions/setup-r@v2 - - - uses: r-lib/actions/setup-r-dependencies@v2 - with: - dependencies: '"hard"' - extra-packages: | - any::usethis - - - name: Update DESCRIPTION file - id: update_description - run: | - usethis::use_latest_dependencies() - shell: Rscript {0} - - - name: Check for changes in DESCRIPTION - id: check_description - run: | - git status - git add --all - - - name: Create pull request - #if: ${{ steps.update_description.outputs.changed }} - uses: peter-evans/create-pull-request@v5 - with: - token: ${{ secrets.GITHUB_TOKEN }} - base: main - branch: desc-${{ github.ref_name }}-${{ github.job }} - branch-suffix: timestamp - delete-branch: true - title: "Update `DESCRIPTION` to use latest 'easystats' dependencies" - body: "Automatically updated the `DESCRIPTION` file using `usethis::use_latest_dependencies()`." - labels: "auto-update" - add-paths: | - DESCRIPTION