From 0ae45297f13918e63310b70c1e72c3f17ce3aa15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 03:12:57 +0000 Subject: [PATCH] Bump pyvista/setup-headless-display-action from 2 to 3 in the actions group (#23) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eric Larson --- .github/workflows/automerge.yml | 17 +++++++++++++++++ .github/workflows/production.yml | 4 ++-- 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/automerge.yml diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml new file mode 100644 index 0000000..fae21da --- /dev/null +++ b/.github/workflows/automerge.yml @@ -0,0 +1,17 @@ +name: Bot auto-merge +on: pull_request # yamllint disable-line rule:truthy + +permissions: + contents: write + pull-requests: write + +jobs: + autobot: + runs-on: ubuntu-latest + if: (github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'pre-commit-ci[bot]') && github.repository == 'pyvista/setup-headless-display-action' + steps: + - name: Enable auto-merge for bot PRs + run: gh pr merge --auto --squash "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 32e9731..093b665 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -1,4 +1,4 @@ -name: Test v1 release +name: Test latest release on: # yamllint disable-line rule:truthy workflow_dispatch: @@ -12,7 +12,7 @@ jobs: os: [macos-14, macos-13, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: pyvista/setup-headless-display-action@v2 + - uses: pyvista/setup-headless-display-action@v3 - uses: actions/setup-python@v5 with: python-version: 3.12