Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/notify-feeder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Notify Feeder

on:
push:
tags:
- "v*"
workflow_dispatch:

permissions:
contents: read

jobs:
dispatch:
runs-on: ubuntu-24.04
steps:
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
id: app-token
with:
client-id: ${{ secrets.SEISCOMP_BUMP_APP_CLIENT_ID }}
private-key: ${{ secrets.SEISCOMP_BUMP_APP_PRIVATE_KEY }}
owner: platformfuzz
repositories: ringserver-feeder
- name: Dispatch ringserver-feeder bump
env:
GH_TOKEN: ${{ steps.app-token.outputs.token }}
run: |
gh api --method POST repos/platformfuzz/ringserver-feeder/dispatches \
--input - <<EOF
{"event_type":"ringserver-released","client_payload":{"tag":"${GITHUB_REF_NAME}"}}
EOF