From b7daec447a201833ea96ac8b8e9d46c0f72f2348 Mon Sep 17 00:00:00 2001 From: Julien Rouhaud Date: Sun, 16 Jun 2024 07:59:44 +0800 Subject: [PATCH] Automatically trigger build of powa-archivist-git --- .github/workflows/powa_archivist_git.yml | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/powa_archivist_git.yml diff --git a/.github/workflows/powa_archivist_git.yml b/.github/workflows/powa_archivist_git.yml new file mode 100644 index 0000000..e10ebd8 --- /dev/null +++ b/.github/workflows/powa_archivist_git.yml @@ -0,0 +1,29 @@ +name: Trigger build and push of powa-archivist-git image + +on: + push: + branches: [master] + +env: + TARGET_REPO: "powa-podman" + EVENT_TYPE: "powa-archivist-git" + +jobs: + trigger_build: + name: Trigger build and push of powa-archivist-git in powa-podman repo + runs-on: ubuntu-latest + steps: + - name: Trigger the powa-archivist-git repository dispatch + run: | + # Set variables + org="${{ github.repository_owner }}" + repo="${{ env.TARGET_REPO }}" + event_type="${{ env.EVENT_TYPE }}" + + curl -L \ + -X POST \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: Bearer ${{ secrets.DISPATCH_TOKEN }}" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + https://api.github.com/repos/${org}/${repo}/dispatches \ + -d "{\"event_type\":\ "${event_type}\"}"