Skip to content

Commit

Permalink
ci: add trigger-downstream-flake-sync workflow (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
sumire88 authored Aug 26, 2024
1 parent 00d569f commit ee272f7
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/trigger-downstream-flake-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# _
# __| | __ _ ___
# / _` |/ _` |/ _ \
# | (_| | (_| | __/
# \__,_|\__,_|\___|
#
# Copyright (C) 2024 @daeuniverse <https://github.com/daeuniverse>
#
# This is a open-source software, liscensed under the AGPL-3.0 License.
# See /License for more information.

---
name: Trigger downstream sync workflow

on:
workflow_dispatch:
push:
branches:
- 'main'

env:
DOWNSTREAM_REPO: flake.nix
WORKFLOW_BRANCH: unstable
WORKFLOW_FILE: sync-upstream.yml

jobs:
dispatch-downstream-workflow:
runs-on: ubuntu-latest
steps:
- name: Generate GitHub auth token
# https://github.com/tibdex/github-app-token
id: generate_token
uses: tibdex/[email protected]
with:
app_id: ${{ secrets.GH_APP_ID }}
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}

- name: Dispatch
uses: convictional/[email protected]
with:
owner: ${{ github.repository_owner }}
repo: ${{ env.DOWNSTREAM_REPO }}
github_token: ${{ steps.generate_token.outputs.token }}
workflow_file_name: ${{ env.WORKFLOW_FILE }}
ref: ${{ env.WORKFLOW_BRANCH }}
client_payload: '{"project":"${{ env.DOWNSTREAM_REPO }}","branch":"${{ env.WORKFLOW_BRANCH }}"}'
trigger_workflow: true
propagate_failure: false
wait_workflow: false

0 comments on commit ee272f7

Please sign in to comment.