Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

update-catalog autoupdate #760

update-catalog autoupdate

update-catalog autoupdate #760

name: "Trigger Update of floxpkgs/index"
on:
push:
branches:
- "**"
workflow_dispatch:
jobs:
update_inputs:
name: "Issue Update Request"
env:
INDEX: ${{ github.repository_owner }}/nixpkgs-flox
runs-on: ubuntu-latest
steps:
- name: Send Trigger to ${{ env.INDEX }}
# TODO: find out which token to use?
run: |
curl \
-X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: Bearer ${{ secrets.NIX_GIT_TOKEN }}" \
https://api.github.com/repos/${{ env.INDEX }}/actions/workflows/update-lock-file.yml/dispatches \
-d '{ "ref" : "master" }'