fix(visio): fix wrong usage of outs() when HAVE_COLOR_VMSG is not def… #92
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: Sending workflow dispatch to "imagedreambbs" project | |
on: | |
push: | |
branches: [master] | |
jobs: | |
sent-dispatch-job: | |
if: ${{ !contains(github.event.head_commit.message, 'skip-ci') }} | |
runs-on: ubuntu-latest | |
steps: | |
- env: | |
WORKFLOW_ID: 'push_container.yml' | |
run: | | |
curl \ | |
-X POST \ | |
-u "${{ secrets.PAT_USERNAME}}:${{secrets.PAT_TOKEN}}" \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
-H "Content-Type: application/json" \ | |
https://api.github.com/repos/bbsdocker/imagedreambbs/actions/workflows/$WORKFLOW_ID/dispatches \ | |
--data '{ | |
"ref": "refs/heads/master", | |
"inputs": {"src_ref": "'"$GITHUB_REF"'", "src_sha": "'"$GITHUB_SHA"'"} | |
}' | |
echo "Dispatch sent." |