Skip to content

Commit 0ce5856

Browse files
authored
chore(*): run update-checker.sh, constraint v1.24.10 (#78)
1 parent 72be48d commit 0ce5856

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Exclude files from releases/tarballs
2+
tests/ export-ignore
3+
.github/ export-ignore
4+
.gitattributes export-ignore

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
## The Issue
22

3-
- #<issue number>
3+
- Fixes #REPLACE_ME_WITH_RELATED_ISSUE_NUMBER
44

55
<!-- Provide a brief description of the issue. -->
66

77
## How This PR Solves The Issue
88

9+
<!-- Describe the key change(s) in this PR that address the issue above. -->
10+
911
## Manual Testing Instructions
1012

13+
<!-- If this PR changes logic, consider adding additional steps or context to the instructions below. -->
14+
1115
```bash
12-
ddev add-on get https://github.com/<user>/<repo>/tarball/<branch>
16+
ddev add-on get https://github.com/ddev/ddev-selenium-standalone-chrome/tarball/refs/pull/REPLACE_ME_WITH_THIS_PR_NUMBER/head
1317
ddev restart
1418
```
1519

.github/workflows/tests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
name: tests
22
on:
33
pull_request:
4+
paths-ignore:
5+
- "**.md"
46
push:
57
branches: [ main ]
8+
paths-ignore:
9+
- "**.md"
610

711
schedule:
8-
- cron: '25 08 * * *'
12+
- cron: '25 08 * * *'
913

1014
workflow_dispatch:
1115
inputs:
@@ -19,9 +23,8 @@ concurrency:
1923
group: ${{ github.workflow }}-${{ github.ref }}
2024
cancel-in-progress: true
2125

22-
# This is required for "gautamkrishnar/keepalive-workflow", see "ddev/github-action-add-on-test"
2326
permissions:
24-
actions: write
27+
contents: read
2528

2629
jobs:
2730
tests:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
## Overview
99

10-
Makes it easy to run Functional, FunctionalJavascript, and Nightwatch tests in DDEV.
10+
Makes it easy to run Functional, FunctionalJavascript, and Nightwatch tests in DDEV.
1111

1212
This service can be used with any project type. The examples below are Drupal-specific. Contributions for docs and tests that show this service working with other project types are appreciated.
1313

@@ -98,7 +98,7 @@ If you use Behat as a test running, adjust your `behat.yml`
9898
9999
## Contribute
100100
101-
- Anyone is welcome to submit a PR to this repo. See README.md at https://github.com/ddev/ddev-addon-template, the parent of this repo.
101+
- Anyone is welcome to submit a PR to this repo. See [DDEV Add-on Maintenance Guide](https://ddev.com/blog/ddev-add-on-maintenance-guide/).
102102
103103
## Credits
104104

install.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,16 @@ project_files:
44
- docker-compose.selenium-chrome.yaml
55
- config.selenium-standalone-chrome.yaml
66

7-
ddev_version_constraint: '>= v1.24.3'
7+
ddev_version_constraint: '>= v1.24.10'
88

99
post_install_actions:
1010
- |
11-
#ddev-nodisplay
1211
#ddev-description:Checking docker-compose.selenium-chrome_extras.yaml for changes
1312
if [ -f docker-compose.selenium-chrome_extras.yaml ] && ! grep -q '#ddev-generated' docker-compose.selenium-chrome_extras.yaml; then
1413
echo "Existing docker-compose.selenium-chrome_extras.yaml does not have #ddev-generated, so can't be updated"
1514
exit 2
1615
fi
1716
- |
18-
#ddev-nodisplay
1917
#ddev-description:Adding all hostnames to the selenium-chrome container to make them available
2018
cat <<-END >docker-compose.selenium-chrome_extras.yaml
2119
#ddev-generated
@@ -30,7 +28,6 @@ post_install_actions:
3028
3129
removal_actions:
3230
- |
33-
#ddev-nodisplay
3431
#ddev-description:Remove docker-compose.selenium-chrome_extras.yaml file
3532
if [ -f docker-compose.selenium-chrome_extras.yaml ]; then
3633
if grep -q '#ddev-generated' docker-compose.selenium-chrome_extras.yaml; then

0 commit comments

Comments
 (0)