mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2025-12-22 12:11:58 +00:00
24 lines
605 B
YAML
24 lines
605 B
YAML
name: Trigger Container Rebuild
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- "README.md"
|
|
|
|
jobs:
|
|
trigger:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger rebuild
|
|
env:
|
|
GH_TOKEN: ${{ secrets.PUBLIC_ACTION_TRIGGER_TOKEN }}
|
|
run: |
|
|
gh api \
|
|
--method POST \
|
|
-H "Accept: application/vnd.github+json" \
|
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
/repos/Cian-H/my_nvim/dispatches \
|
|
-f "event_type=rebuild-container" -F "client_payload[unit]=false" -F "client_payload[integration]=true"
|