Skip to content

Commit

Permalink
Merge pull request #10 from wwt/certified_update
Browse files Browse the repository at this point in the history
Updating collection to support cisco.meraki certified collection.
  • Loading branch information
nsthompson authored May 30, 2024
2 parents a94fb9a + e82a7b0 commit cca1583
Show file tree
Hide file tree
Showing 58 changed files with 5,350 additions and 3,992 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/check_label.yaml
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
33 changes: 33 additions & 0 deletions .github/workflows/ci.yaml
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 }}'
])"
18 changes: 18 additions & 0 deletions .github/workflows/draft_release.yaml
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 }}
13 changes: 13 additions & 0 deletions .github/workflows/release.yaml
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 }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,5 @@ scratch/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

changelogs/.plugin_cache
19 changes: 14 additions & 5 deletions CHANGELOG.md
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\.
Loading

0 comments on commit cca1583

Please sign in to comment.