Skip to content

Commit 17ffbc3

Browse files
committed
Update GitHub Actions
Dependabot should now trigger at the same time across all NGINX Core Ansible repositories
1 parent 1b10f50 commit 17ffbc3

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
---
22
version: 2
33
updates:
4-
- package-ecosystem: "github-actions"
5-
directory: "/"
4+
- package-ecosystem: github-actions
5+
directory: /
66
schedule:
7-
interval: "weekly"
8-
- package-ecosystem: "pip"
9-
directory: "/.github/workflows/requirements"
7+
interval: weekly
8+
day: monday
9+
time: "00:00"
10+
- package-ecosystem: pip
11+
directory: /.github/workflows/requirements
1012
schedule:
11-
interval: "weekly"
13+
interval: weekly
14+
day: monday
15+
time: "00:00"
16+

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ Before creating a PR, run through this checklist and mark each as complete.
99
- [ ] I have read the [CONTRIBUTING](https://github.com/nginxinc/ansible-role-nginx/blob/main/CONTRIBUTING.md) document
1010
- [ ] I have added Molecule tests that prove my fix is effective or that my feature works
1111
- [ ] I have checked that any relevant Molecule tests pass after adding my changes
12-
- [ ] I have updated any relevant documentation (`defaults/main/*.yml`, `README.md` and `CHANGELOG.md`)
12+
- [ ] I have updated any relevant documentation ([`defaults/main/*.yml`](https://github.com/nginxinc/ansible-role-nginx/blob/main/defaults/main/), [`README.md`](https://github.com/nginxinc/ansible-role-nginx/blob/main/README.md) and [`CHANGELOG.md`](https://github.com/nginxinc/ansible-role-nginx/blob/main/CHANGELOG.md))

.github/workflows/galaxy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
name: Ansible Galaxy import
3-
"on":
3+
on:
44
release:
55
types:
66
- published
7+
workflow_dispatch:
78
jobs:
89
galaxy:
910
name: Galaxy

.github/workflows/molecule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Molecule CI/CD
3-
"on":
3+
on:
44
pull_request:
55
branches:
66
- main

.github/workflows/release-drafter.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Release Drafter
3-
"on":
3+
on:
44
pull_request:
55
types:
66
- opened
@@ -9,6 +9,7 @@ name: Release Drafter
99
push:
1010
branches:
1111
- main
12+
workflow_dispatch:
1213
jobs:
1314
update_release_draft:
1415
name: Update release draft

0 commit comments

Comments
 (0)