Skip to content

Commit 410696a

Browse files
slack no more (#137)
1 parent 87ecc82 commit 410696a

File tree

1 file changed

+0
-131
lines changed

1 file changed

+0
-131
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 131 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,6 @@ jobs:
2525
token: ${{ secrets.GITHUB_TOKEN }}
2626
continue-on-error: true
2727

28-
- name: slack-it
29-
uses: homoluctus/[email protected]
30-
if: failure() || cancelled()
31-
with:
32-
type: ${{ job.status }}
33-
job_name: "*${{ github.workflow }}* Build @ audit"
34-
url: ${{ secrets.SLACK_WEBHOOK }}
35-
commit: true
36-
token: ${{ secrets.GITHUB_TOKEN }}
37-
continue-on-error: true
38-
3928
# issue on critcmp: https://github.com/BurntSushi/critcmp/issues/5
4029
bench-pr:
4130
if: github.event_name == 'pull_request'
@@ -113,17 +102,6 @@ jobs:
113102
path: ./target/criterion
114103
continue-on-error: true
115104

116-
- name: slack-it
117-
uses: homoluctus/[email protected]
118-
if: failure() || cancelled()
119-
with:
120-
type: ${{ job.status }}
121-
job_name: "*${{ github.workflow }}* @ bench-pr"
122-
url: ${{ secrets.SLACK_WEBHOOK }}
123-
commit: true
124-
token: ${{ secrets.GITHUB_TOKEN }}
125-
continue-on-error: true
126-
127105
bench:
128106
if: github.event_name == 'push'
129107
runs-on: ubuntu-18.04
@@ -144,17 +122,6 @@ jobs:
144122
name: criterion-report
145123
path: ./target/criterion
146124

147-
- name: slack-it
148-
uses: homoluctus/[email protected]
149-
if: failure() || cancelled()
150-
with:
151-
type: ${{ job.status }}
152-
job_name: "*${{ github.workflow }}* @ bench"
153-
url: ${{ secrets.SLACK_WEBHOOK }}
154-
commit: true
155-
token: ${{ secrets.GITHUB_TOKEN }}
156-
continue-on-error: true
157-
158125
check:
159126
runs-on: ubuntu-18.04
160127
strategy:
@@ -185,17 +152,6 @@ jobs:
185152
run: make check
186153
continue-on-error: ${{ matrix.can-fail }}
187154

188-
- name: slack-it
189-
uses: homoluctus/[email protected]
190-
if: failure() || cancelled()
191-
with:
192-
type: ${{ job.status }}
193-
job_name: "*${{ github.workflow }}* @ check"
194-
url: ${{ secrets.SLACK_WEBHOOK }}
195-
commit: true
196-
token: ${{ secrets.GITHUB_TOKEN }}
197-
continue-on-error: true
198-
199155
coverage:
200156
runs-on: ubuntu-18.04
201157

@@ -230,17 +186,6 @@ jobs:
230186
with:
231187
file: ./cobertura.xml
232188

233-
- name: slack-it
234-
uses: homoluctus/[email protected]
235-
if: failure() || cancelled()
236-
with:
237-
type: ${{ job.status }}
238-
job_name: "*${{ github.workflow }}* @ coverage"
239-
url: ${{ secrets.SLACK_WEBHOOK }}
240-
commit: true
241-
token: ${{ secrets.GITHUB_TOKEN }}
242-
continue-on-error: true
243-
244189
format:
245190
runs-on: ubuntu-18.04
246191
steps:
@@ -257,17 +202,6 @@ jobs:
257202
command: fmt
258203
args: --all -- --check
259204

260-
- name: slack-it
261-
uses: homoluctus/[email protected]
262-
if: failure() || cancelled()
263-
with:
264-
type: ${{ job.status }}
265-
job_name: "*${{ github.workflow }}* @ format"
266-
url: ${{ secrets.SLACK_WEBHOOK }}
267-
commit: true
268-
token: ${{ secrets.GITHUB_TOKEN }}
269-
continue-on-error: true
270-
271205
lint:
272206
runs-on: ubuntu-18.04
273207

@@ -281,17 +215,6 @@ jobs:
281215
- name: cargo-clippy
282216
run: make lint
283217

284-
- name: slack-it
285-
uses: homoluctus/[email protected]
286-
if: failure() || cancelled()
287-
with:
288-
type: ${{ job.status }}
289-
job_name: "*${{ github.workflow }}* @ lint"
290-
url: ${{ secrets.SLACK_WEBHOOK }}
291-
commit: true
292-
token: ${{ secrets.GITHUB_TOKEN }}
293-
continue-on-error: true
294-
295218
sanitize:
296219
runs-on: ubuntu-18.04
297220

@@ -317,17 +240,6 @@ jobs:
317240
&& rustup component add rust-src \
318241
&& cargo run --target x86_64-unknown-linux-gnu -Zbuild-std -- -f ping4d.toml"
319242
320-
- name: slack-it
321-
uses: homoluctus/[email protected]
322-
if: failure() || cancelled()
323-
with:
324-
type: ${{ job.status }}
325-
job_name: "*${{ github.workflow }}* @ sanitize"
326-
url: ${{ secrets.SLACK_WEBHOOK }}
327-
commit: true
328-
token: ${{ secrets.GITHUB_TOKEN }}
329-
continue-on-error: true
330-
331243
test:
332244
runs-on: ubuntu-18.04
333245

@@ -341,49 +253,6 @@ jobs:
341253
- name: cargo-test
342254
run: make test
343255

344-
- name: slack-it
345-
uses: homoluctus/[email protected]
346-
if: failure() || cancelled()
347-
with:
348-
type: ${{ job.status }}
349-
job_name: "*${{ github.workflow }}* @ test"
350-
url: ${{ secrets.SLACK_WEBHOOK }}
351-
commit: true
352-
token: ${{ secrets.GITHUB_TOKEN }}
353-
continue-on-error: true
354-
355-
slack-pr:
356-
if: github.event_name == 'pull_request'
357-
needs: [audit, bench-pr, check, coverage, format, lint, sanitize, test]
358-
runs-on: ubuntu-18.04
359-
steps:
360-
- name: slack-it
361-
uses: homoluctus/[email protected]
362-
if: always()
363-
with:
364-
type: ${{ job.status }}
365-
job_name: "*${{ github.workflow }}*"
366-
url: ${{ secrets.SLACK_WEBHOOK }}
367-
commit: true
368-
token: ${{ secrets.GITHUB_TOKEN }}
369-
continue-on-error: true
370-
371-
slack:
372-
if: github.event_name == 'push'
373-
needs: [audit, bench, check, coverage, format, lint, sanitize, test]
374-
runs-on: ubuntu-18.04
375-
steps:
376-
- name: slack-it
377-
uses: homoluctus/[email protected]
378-
if: always()
379-
with:
380-
type: ${{ job.status }}
381-
job_name: "*${{ github.workflow }}*"
382-
url: ${{ secrets.SLACK_WEBHOOK }}
383-
commit: true
384-
token: ${{ secrets.GITHUB_TOKEN }}
385-
continue-on-error: true
386-
387256
discord-pr:
388257
if: github.event_name == 'pull_request'
389258
needs: [audit, bench-pr, check, coverage, format, lint, sanitize, test]

0 commit comments

Comments
 (0)