Skip to content

Commit b646455

Browse files
ci: run PR checks also for develop PRs (#388)
* ci: run PR checks also for develop PRs * ci: update checkout action to v7 * ci: add dependabot config * chore: add prettier-ignore comments to prevent line break
1 parent 53f6851 commit b646455

5 files changed

Lines changed: 25 additions & 6 deletions

File tree

.github/dependabot.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
target-branch: "develop"
8+
labels:
9+
- "dependencies"
10+
11+
- package-ecosystem: "npm"
12+
directory: "/"
13+
schedule:
14+
interval: "monthly"
15+
target-branch: "develop"
16+
labels:
17+
- "dependencies"
18+
- "javascript"

.github/workflows/autoupdate_develop.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
timeout-minutes: 5
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v7
1717
- name: Merge master back to develop
1818
run: |
1919
git config --local user.email "actions@github.com"

.github/workflows/container-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
options: --privileged
2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v7
2323
- name: Build container
2424
run: |
2525
REPO="$(echo "$GITHUB_REPOSITORY" | tr "[:upper:]" "[:lower:]")"

.github/workflows/pr-check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- synchronize
77
- reopened
88
branches:
9+
- develop
910
- master
1011

1112
concurrency:
@@ -18,7 +19,7 @@ jobs:
1819

1920
steps:
2021
- name: Checkout Repository
21-
uses: actions/checkout@v5
22+
uses: actions/checkout@v7
2223

2324
- name: Install Node.js
2425
uses: actions/setup-node@v6

configuration/introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
3. Minimum configuration requires the following:
1111

12+
<!-- prettier-ignore -->
1213
```js
1314
let config = {
1415
modules: [
@@ -179,16 +180,15 @@ if (typeof module !== "undefined") {module.exports = config;}
179180

180181
would be translated to
181182

183+
<!-- prettier-ignore -->
182184
```js
183185
let config = {
184186
address: "localhost",
185187
port: 8080,
186188
useHttps: false,
187189
};
188190
/*************** DO NOT EDIT THE LINE BELOW ***************/
189-
if (typeof module !== "undefined") {
190-
module.exports = config;
191-
}
191+
if (typeof module !== "undefined") {module.exports = config;}
192192
```
193193

194194
#### Defining variables

0 commit comments

Comments
 (0)