Release validation status #4
This file contains hidden or 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
name: Release validation status | |
on: | |
workflow_dispatch: | |
inputs: | |
package_id: | |
type: string | |
required: true | |
description: Package ID of the release submission | |
jobs: | |
release-validation-status: | |
name: Release validation status | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Call Splunkbase | |
run: | | |
curl -iL -u "${{ secrets.SPLUNKBASE_USERNAME }}:${{ secrets.SPLUNKBASE_PASSWORD }}" \ | |
"https://splunkbase.splunk.com/api/v1/package/${{ github.event.inputs.package_id }}/" | |