Require a changelog (#179)
* Require a changelog * Add changelog * Move to fragment folder * Place correctly * Add CL * Add CL * Add CLpull/185/head
parent
5a53c19804
commit
829a706a3d
|
@ -7,6 +7,8 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
changelog:
|
||||
uses: ansible-network/github_actions/.github/workflows/changelog.yml@main
|
||||
sanity:
|
||||
uses: ansible-network/github_actions/.github/workflows/sanity.yml@main
|
||||
unit-galaxy:
|
||||
|
@ -15,12 +17,14 @@ jobs:
|
|||
all_green:
|
||||
if: ${{ always() }}
|
||||
needs:
|
||||
- changelog
|
||||
- sanity
|
||||
- unit-galaxy
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: >-
|
||||
python -c "assert set([
|
||||
'${{ needs.changelog.result }}',
|
||||
'${{ needs.sanity.result }}',
|
||||
'${{ needs.unit-galaxy.result }}'
|
||||
]) == {'success'}"
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
trivial:
|
||||
- Require a changelog fragment
|
Loading…
Reference in New Issue