Skip to content

Fix lint issue in README #98

Fix lint issue in README

Fix lint issue in README #98

Workflow file for this run

# yamllint disable rule:line-length
---
name: Send workflow dispatch
on:
pull_request:
types:
- closed
branches:
- "main"
paths-ignore:
- ".github/*"
jobs:
send-dispatch:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Send dispatch to 2nd repo
run: |
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $BEARER_TOKEN" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/AxisCommunications/docker-compose-acap/actions/workflows/cherry-picker.yml/dispatches \
-d '{"ref":"main"}'
env:
BEARER_TOKEN: ${{ secrets.WORKFLOWDISPATCH_PAT }}