We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c46201 commit cff7db6Copy full SHA for cff7db6
1 file changed
.github/workflows/release.yml
@@ -33,3 +33,17 @@ jobs:
33
env:
34
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35
run: gh release edit "${{ github.ref_name }}" --draft=false --repo "${{ github.repository }}"
36
+
37
+ notify-workflow-registry:
38
+ name: Notify workflow-registry
39
+ runs-on: ubuntu-latest
40
+ needs: release
41
+ if: ${{ !contains(inputs.tag_name || github.ref_name, '-') }}
42
+ steps:
43
+ - name: Trigger registry manifest sync
44
+ uses: peter-evans/repository-dispatch@v4
45
+ with:
46
+ token: ${{ secrets.repo_dispatch_token }}
47
+ repository: GoCodeAlone/workflow-registry
48
+ event-type: plugin-release
49
+ client-payload: '{"plugin": "data-engineering"}'
0 commit comments