Add new workflow to create tag in hub-tests (#153)

This commit is contained in:
AlteredCoder 2020-07-29 12:36:02 +02:00 committed by GitHub
parent 8718cc9aac
commit a2b6b31a26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

19
.github/workflows/dispatch.yaml vendored Normal file
View file

@ -0,0 +1,19 @@
name: Dispatch when pre-release
on:
push:
tags:
- v*
jobs:
dispatch:
name: dispatch to hub-tests
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.DISPATCH_TOKEN }}
event-type: create_tag
repository: crowdsecurity/hub-tests
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'