Updating to standard MIT license #16
Workflow file for this run
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
name: Blueprint Linter | |
on: [push] | |
jobs: | |
validate_content: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Required Binaries | |
run: | | |
wget https://github.com/purecloudlabs/devcenter-blueprint-linter/releases/latest/download/gc_linter.zip | |
unzip gc_linter.zip | |
chmod +x ./gc_linter | |
wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 -O jq | |
chmod +x jq | |
chmod +x ./.github/workflows/display-error.sh | |
- name: Run Validation | |
run: | | |
./gc_linter ${{ github.workspace }} -c ./blueprint.rule.json -t ./results-template.md.tmpl > result.md | |
./gc_linter ${{ github.workspace }} -c ./blueprint.rule.json > linter-result.json | |
- name: Upload Log | |
uses: actions/upload-artifact@v3 | |
with: | |
name: linter-result | |
path: ./result.md | |
- name: Dispatch to GenesysCloudBlueprint central | |
run: | | |
RESULTS=$(cat ./linter-result.json | base64 | tr -d "[:space:]") | |
echo '{"event_type": "ping", "client_payload": { "repository": "'"$GITHUB_REPOSITORY"'", "result": "'"$RESULTS"'" }}' | |
curl -X POST https://api.github.com/repos/GenesysCloudBlueprints/genesyscloud-blueprint-linter-results/dispatches \ | |
-H 'Accept: application/vnd.github.everest-preview+json' \ | |
-u ${{ secrets.TOKEN }} \ | |
--data '{"event_type": "ping", "client_payload": { "repository": "'"$GITHUB_REPOSITORY"'", "result": "'"$RESULTS"'" }}' | |
- name: Evaluate Results | |
run: .github/workflows/display-error.sh | |
shell: bash | |