Skip to content
This repository was archived by the owner on Feb 9, 2024. It is now read-only.

Commit ecbbd50

Browse files
authored
CI(actions): Implement Webhook receiver for edge and stable (#24)
1 parent a9fc102 commit ecbbd50

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.github/workflows/docker-edge.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
push:
55
branches:
66
- 'master'
7+
repository_dispatch:
8+
types:
9+
- refresh
710

811
jobs:
912
docker:

.github/workflows/docker-pr.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
- name: Docker meta for PR
2323
id: meta
2424
uses: docker/metadata-action@v3
25-
if: github.event_name == 'pull_request'
2625
with:
2726
images: ${{ secrets.DOCKER_IMAGE }}
2827
tags: |

.github/workflows/docker-stable.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
push:
55
tags:
66
- 'v*'
7+
repository_dispatch:
8+
types:
9+
- refresh
710

811
jobs:
912
docker:

0 commit comments

Comments
 (0)