-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from wwt/certified_update
Updating collection to support cisco.meraki certified collection.
- Loading branch information
Showing
58 changed files
with
5,350 additions
and
3,992 deletions.
There are no files selected for viewing
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,11 @@ | ||
--- | ||
name: "Check label" | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
on: | ||
pull_request_target: | ||
types: [opened, labeled, unlabeled, synchronize] | ||
jobs: | ||
check_label: | ||
uses: ansible/ansible-content-actions/.github/workflows/check_label.yaml@main |
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,33 @@ | ||
--- | ||
name: "CI" | ||
|
||
concurrency: | ||
group: ${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
changelog: | ||
uses: ansible/ansible-content-actions/.github/workflows/changelog.yaml@main | ||
if: github.event_name == 'pull_request' | ||
ansible-lint: | ||
uses: ansible/ansible-content-actions/.github/workflows/ansible_lint.yaml@main | ||
all_green: | ||
if: ${{ always() }} | ||
needs: | ||
- changelog | ||
- ansible-lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: >- | ||
python -c "assert 'failure' not in | ||
set([ | ||
'${{ needs.changelog.result }}', | ||
'${{ needs.ansible-lint.result }}' | ||
])" |
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,18 @@ | ||
--- | ||
name: "Draft release" | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
on: | ||
workflow_dispatch: | ||
env: | ||
NAMESPACE: ${{ github.repository_owner }} | ||
COLLECTION_NAME: meraki | ||
ANSIBLE_COLLECTIONS_PATHS: ./ | ||
jobs: | ||
update_release_draft: | ||
uses: ansible/ansible-content-actions/.github/workflows/draft_release.yaml@main | ||
with: | ||
repo: ${{ github.event.pull_request.head.repo.full_name }} | ||
secrets: | ||
BOT_PAT: ${{ secrets.BOT_PAT }} |
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,13 @@ | ||
--- | ||
name: "Release collection on Galaxy" | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
release_ansible_galaxy: | ||
uses: ansible/ansible-content-actions/.github/workflows/release_galaxy.yaml@main | ||
with: | ||
environment: release | ||
secrets: | ||
ah_token: ${{ secrets.ANSIBLE_GALAXY_API_KEY }} |
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,9 +1,18 @@ | ||
# CHANGELOG | ||
# wwt\.meraki Release Notes | ||
|
||
## 1.0.0 (2023-05-26) | ||
**Topics** | ||
|
||
* 🎉 first release! | ||
- <a href="#v1-1-0">v1\.1\.0</a> | ||
- <a href="#new-plugins">New Plugins</a> | ||
- <a href="#lookup">Lookup</a> | ||
|
||
## 1.0.1 (2023-06-04) | ||
<a id="v1-1-0"></a> | ||
## v1\.1\.0 | ||
|
||
* Added role metadata | ||
<a id="new-plugins"></a> | ||
### New Plugins | ||
|
||
<a id="lookup"></a> | ||
#### Lookup | ||
|
||
* wwt\.meraki\.fetch \- Fetch data from the Meraki API\. |
Oops, something went wrong.