Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 7275003

Browse files
authored
Deprecation Warning
Fixes #2
1 parent f0076ec commit 7275003

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# Deprecated
2+
3+
Since GitHub Actions were rewritten after the original version functionality of this action can be achieved out of the box by creating a workflow like this:
4+
5+
```yaml
6+
on:
7+
check_suite:
8+
type: ['completed']
9+
10+
name: Continue after Cirrus CI Complets Successfully
11+
jobs:
12+
continue:
13+
name: After Cirrus CI
14+
if: github.event.check_suite.app.name == 'Cirrus CI' && github.event.check_suite.conclusion == 'success'
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Continue
18+
run: echo "Hello after Cirrus CI Completed"
19+
```
20+
121
# GitHub Actions for Checks API
222
323
[![Build Status](https://api.cirrus-ci.com/github/cirrus-actions/check-suite.svg)](https://cirrus-ci.com/github/cirrus-actions/check-suite) [![](https://images.microbadger.com/badges/version/cirrusactions/check-suite.svg)](https://microbadger.com/images/cirrusactions/check-suite) [![](https://images.microbadger.com/badges/image/cirrusactions/check-suite.svg)](https://microbadger.com/images/cirrusactions/check-suite)

0 commit comments

Comments
 (0)