File tree Expand file tree Collapse file tree 2 files changed +13
-12
lines changed Expand file tree Collapse file tree 2 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,15 @@ jobs:
18
18
runs-on : ubuntu-latest
19
19
name : POST Webhook
20
20
steps :
21
- - uses : openziti/ziti-mattermost-action-py@main
22
- if : |
23
- github.repository_owner == 'openziti'
24
- && ((github.event_name != 'pull_request_review')
25
- || (github.event_name == 'pull_request_review' && github.event.review.state == 'approved'))
26
- with :
27
- zitiId : ${{ secrets.ZITI_MATTERMOST_IDENTITY }}
28
- webhookUrl : ${{ secrets.ZHOOK_URL }}
29
- eventJson : ${{ toJson(github.event) }}
30
- senderUsername : " GitHubZ"
31
- destChannel : " dev-notifications"
21
+ - uses : actions/checkout@v1
22
+ - uses : ./ # use self to bring the pain forward
23
+ if : |
24
+ github.repository_owner == 'openziti'
25
+ && ((github.event_name != 'pull_request_review')
26
+ || (github.event_name == 'pull_request_review' && github.event.review.state == 'approved'))
27
+ with :
28
+ zitiId : ${{ secrets.ZITI_MATTERMOST_IDENTITY }}
29
+ webhookUrl : ${{ secrets.ZHOOK_URL }}
30
+ eventJson : ${{ toJson(github.event) }}
31
+ senderUsername : " GitHubZ"
32
+ destChannel : " dev-notifications"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM python:3-slim AS builder
2
2
ADD . /app
3
3
WORKDIR /app
4
4
5
- RUN pip install --target=/app requests openziti
5
+ RUN pip install --target=/app requests openziti==0.7.2
6
6
7
7
# https://github.com/GoogleContainerTools/distroless
8
8
FROM gcr.io/distroless/python3-debian10
You can’t perform that action at this time.
0 commit comments