-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
debaffe
commit 0ac8adc
Showing
21 changed files
with
4,468 additions
and
10,571 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
reviewers: | ||
- sbaerlocher | ||
assignees: | ||
- sbaerlocher | ||
commit-message: | ||
prefix: fix | ||
prefix-development: chore | ||
include: scope | ||
|
||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
reviewers: | ||
- sbaerlocher | ||
assignees: | ||
- sbaerlocher | ||
commit-message: | ||
prefix: fix | ||
prefix-development: chore | ||
include: scope |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ jobs: | |
uses: ./ | ||
with: | ||
api_key: ${{ secrets.GALAXY_API_KEY }} | ||
collection_dir: tests/collection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
name: 'Publish Ansible Collection' | ||
description: 'Build and publish an Ansible Collection to Ansible Galaxy' | ||
name: "Publish Ansible Collection" | ||
description: "Build and publish an Ansible Collection to Ansible Galaxy" | ||
author: 'Simon Baerlocher <[email protected]>"' | ||
inputs: | ||
api_key: | ||
|
@@ -9,12 +9,29 @@ inputs: | |
See https://help.github.com/en/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions#creating-and-using-secrets-encrypted-variables. | ||
required: true | ||
galaxy_config_file: | ||
description: 'A collection must have a galaxy.yml file that contains the necessary information to build a collection artifact. Defaults to "galaxy.yml" in the project root.' | ||
default: 'galaxy.yml' | ||
collection_dir: | ||
description: | | ||
The directory in which the Ansible Collection is stored. This defaults to the project root. | ||
required: false | ||
default: "./" | ||
build: | ||
description: | | ||
You can now choose to build a collection without publishing, and vice versa. | ||
If you wish to disable building a collection, set this parameter to "false." | ||
required: true | ||
default: "true" | ||
publish: | ||
description: | | ||
You can now choose to publish a collection without building (from a pre-built archive), and vice versa. | ||
If you wish to disable publishing a collection, set this parameter to "false." | ||
required: true | ||
default: "true" | ||
galaxy_version: | ||
description: Dynamically inject a semver-compatible version into your galaxy.yml file. | ||
required: false | ||
runs: | ||
using: 'node12' | ||
main: 'dist/index.js' | ||
using: "node12" | ||
main: "dist/index.js" | ||
branding: | ||
icon: 'box' | ||
color: 'black' | ||
icon: "box" | ||
color: "black" |
Oops, something went wrong.