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 @@ -20,14 +20,15 @@ jobs:
20
20
runs-on : ubuntu-latest
21
21
name : POST Webhook
22
22
steps :
23
- - uses : openziti/ziti-mattermost-action-py@main
24
- if : |
25
- github.repository_owner == 'openziti'
26
- && ((github.event_name != 'pull_request_review')
27
- || (github.event_name == 'pull_request_review' && github.event.review.state == 'approved'))
28
- with :
29
- zitiId : ${{ secrets.ZITI_MATTERMOST_IDENTITY }}
30
- webhookUrl : ${{ secrets.ZHOOK_URL }}
31
- eventJson : ${{ toJson(github.event) }}
32
- senderUsername : " GitHubZ"
33
- destChannel : " dev-notifications"
23
+ - uses : actions/checkout@v1
24
+ - uses : ./ # use self to bring the pain forward
25
+ if : |
26
+ github.repository_owner == 'openziti'
27
+ && ((github.event_name != 'pull_request_review')
28
+ || (github.event_name == 'pull_request_review' && github.event.review.state == 'approved'))
29
+ with :
30
+ zitiId : ${{ secrets.ZITI_MATTERMOST_IDENTITY }}
31
+ webhookUrl : ${{ secrets.ZHOOK_URL }}
32
+ eventJson : ${{ toJson(github.event) }}
33
+ senderUsername : " GitHubZ"
34
+ 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