Add new workflow to create tag in hub-tests (#153)
This commit is contained in:
parent
8718cc9aac
commit
a2b6b31a26
1 changed files with 19 additions and 0 deletions
19
.github/workflows/dispatch.yaml
vendored
Normal file
19
.github/workflows/dispatch.yaml
vendored
Normal 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 }}"}'
|
Loading…
Reference in a new issue