I am the maintainer of netscaler.adc
ansible collection and I have integreated an automated workflow to relase my collection to Ansible Galaxy and Ansible Automation Hub whenever a new GitHub release is published.
My workflow file as below
---
name: Release the ansible collection to Ansible Galaxy and Ansible Automation Hub
on:
release:
types: [published]
jobs:
release:
uses: ansible/devtools/.github/workflows/release_collection.yml@main
with:
environment: release
secrets:
ah_token: ${{ secrets.AH_TOKEN }}
ansible_galaxy_api_key: ${{ secrets.ANSIBLE_GALAXY_API_KEY }}
I internally using github.com/team-devtools workflow to release the collection
The github workflow was working till my last release 3 week back. However the pipeline is broken since yesterday.
The error is as below:
Invalid workflow file: .github/workflows/release.yml#L8
error parsing called workflow ".github/workflows/release.yml" -> "ansible/devtools/.github/workflows/release_collection.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
workflow run link: 2.6.1 · netscaler/ansible-collection-netscaleradc@9b850f5 · GitHub
Please help me here as it is blocking our release.
Thank you in advance,
Sumanth