Skip to content

Commit fddb4bc

Browse files
authored
Replace non-existent GitHub actions key (#305)
1 parent c3fd9ed commit fddb4bc

File tree

6 files changed

+16
-28
lines changed

6 files changed

+16
-28
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Main global owner #
22
#####################
3-
43
* @alessfg
54
/.github/workflows/
65
*.md

.github/workflows/galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Ansible Galaxy import
3-
"on":
3+
on:
44
release:
55
types:
66
- published

.github/workflows/molecule.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
name: Molecule CI/CD
3-
"on":
3+
on:
44
pull_request:
55
branches:
66
- main
77
push:
88
branches:
99
- main
10-
ignore-tags:
11-
- "*"
10+
tags-ignore:
11+
- "**"
1212
schedule:
1313
- cron: "0 0 1 * *"
1414
workflow_dispatch:

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 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

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44

55
ENHANCEMENTS:
66

7+
* Bump the minimum version of Ansible core required to run the role to `2.12` (`2.11` is no longer supported by Ansible).
78
* Support the `include` directive in the main NGINX context.
89
* Bump the Ansible `community.general` collection to `6.2.0` and `community.docker` collection to `3.4.0`.
910

1011
BUG FIXES:
1112

12-
GitHub actions should now correctly skip \*plus\* scenarios only when the NGINX Plus license secrets are not present.
13+
* GitHub actions should now correctly skip \*plus\* scenarios only when the NGINX Plus license secrets are not present.
14+
* The `ignore-tags` GitHub actions key does not exist. Replace it with the correct key, `tags-ignore`.
1315

1416
TESTS:
1517

meta/main.yml

Lines changed: 8 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,23 @@ galaxy_info:
77

88
license: Apache License, Version 2.0
99

10-
min_ansible_version: "2.11"
10+
min_ansible_version: "2.12"
1111

1212
platforms:
1313
- name: Alpine
14-
versions:
15-
- all
14+
versions: [all]
1615
- name: Amazon Linux 2
17-
versions:
18-
- all
16+
versions: [all]
1917
- name: Debian
20-
versions:
21-
- bullseye
18+
versions: [bullseye]
2219
- name: EL
23-
versions:
24-
- "7"
25-
- "8"
26-
- "9"
20+
versions: ['7', '8', '9']
2721
- name: FreeBSD
28-
versions:
29-
- "12.1"
22+
versions: ['12.1']
3023
- name: Ubuntu
31-
versions:
32-
- bionic
33-
- focal
34-
- impish
35-
- jammy
24+
versions: [bionic, focal, impish, jammy]
3625
- name: SLES
37-
versions:
38-
- "12"
39-
- "15"
26+
versions: ['12', '15']
4027

4128
galaxy_tags:
4229
- nginx

0 commit comments

Comments
 (0)