Skip to content

Commit 8163ece

Browse files
authored
Replace non-existent GitHub actions key (#579)
1 parent be970e6 commit 8163ece

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ BUG FIXES:
3434
* Fix an issue when installing the GeoIP2 module on an UBI 7 container where the the `libmaxminddb` package dependency might not be available via `yum` (if it's not available, `libmaxminddb` is installed from an external source).
3535
* GitHub actions should now correctly skip \*plus\* scenarios only when the NGINX Plus license secrets are not present.
3636
* Update the versions of the various packages required to build NGINX from source. The version of `zlib` listed in the role was no longer available.
37+
* The `ignore-tags` GitHub actions key does not exist. Replace it with the correct key, `tags-ignore`.
3738

3839
TESTS:
3940

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ If you wish to install NGINX Plus using this role, you will need to obtain an NG
4949
* Instructions on how to install Molecule can be found in the [Molecule website](https://molecule.readthedocs.io/en/latest/installation.html). *You will also need to install the Molecule Docker driver.*
5050
* To run the NGINX Plus Molecule tests, you must copy your NGINX Plus license to the role's [`files/license`](https://github.com/nginxinc/ansible-role-nginx/blob/main/files/license/) folder.
5151

52-
You can alternatively add your NGINX Plus repository certificate and key to the local environment. Run the following commands to export these files as base64-encoded variables and execute the Molecule tests:
52+
You can alternatively add your NGINX Plus repository certificate and key to the local environment. Run the following commands to export these files as base64-encoded variables and execute the Molecule tests:
5353

54-
```bash
55-
export NGINX_CRT=$( cat <path to your certificate file> | base64 )
56-
export NGINX_KEY=$( cat <path to your key file> | base64 )
57-
molecule test -s plus
58-
```
54+
```bash
55+
export NGINX_CRT=$( cat <path to your certificate file> | base64 )
56+
export NGINX_KEY=$( cat <path to your key file> | base64 )
57+
molecule test -s plus
58+
```
5959

6060
## Installation
6161

0 commit comments

Comments
 (0)