Skip to content

Commit 0ae4529

Browse files
Bump pyvista/setup-headless-display-action from 2 to 3 in the actions group (#23)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eric Larson <larson.eric.d@gmail.com>
1 parent 83c78fd commit 0ae4529

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.github/workflows/automerge.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Bot auto-merge
2+
on: pull_request # yamllint disable-line rule:truthy
3+
4+
permissions:
5+
contents: write
6+
pull-requests: write
7+
8+
jobs:
9+
autobot:
10+
runs-on: ubuntu-latest
11+
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'
12+
steps:
13+
- name: Enable auto-merge for bot PRs
14+
run: gh pr merge --auto --squash "$PR_URL"
15+
env:
16+
PR_URL: ${{github.event.pull_request.html_url}}
17+
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

.github/workflows/production.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test v1 release
1+
name: Test latest release
22

33
on: # yamllint disable-line rule:truthy
44
workflow_dispatch:
@@ -12,7 +12,7 @@ jobs:
1212
os: [macos-14, macos-13, ubuntu-latest, windows-latest]
1313
runs-on: ${{ matrix.os }}
1414
steps:
15-
- uses: pyvista/setup-headless-display-action@v2
15+
- uses: pyvista/setup-headless-display-action@v3
1616
- uses: actions/setup-python@v5
1717
with:
1818
python-version: 3.12

0 commit comments

Comments
 (0)