You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integrations/github/workflows/ReadMe.md
-32Lines changed: 0 additions & 32 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,35 +51,3 @@
51
51
### Congratulations! You now know how to create and run browser tests with GitHub Actions/Workflows!
52
52
53
53
### **Study [SeleniumBase](https://github.com/seleniumbase/SeleniumBase) to learn more!**
54
-
55
-
----------
56
-
----------
57
-
58
-
### **Integrations for GitHub Actions:**
59
-
60
-
### Slack Notifications - [rtCamp/action-slack-notify](https://github.com/rtCamp/action-slack-notify) can be used to send notifications to Slack.
61
-
62
-
**Usage:**
63
-
* Create a slack integration webhook if you don't have one already.
64
-
* Create a ``SLACK_WEBHOOK`` secret on your repository with the webhook token value.
65
-
* For this particular action, ``SLACK_CHANNEL`` is an optional environment variable that defaults to the webhook token channel if not specified.
66
-
* The following example shows how to put a link to your workflow as the ``SLACK_MESSAGE`` (Lets you see artifacts pushed up, such as from the SeleniumBase Presenter feature!):
* Here's an example using [upload-artifact@v2](https://github.com/actions/upload-artifact) to push up a SeleniumBase-generated presentation as an artifact. (You can use this together with the Slack notification action to view the presentation directly from GitHub)
### <imgsrc="https://seleniumbase.io/img/sb_icon.png"title="SeleniumBase"width="30" /> Integrations for GitHub Actions:
2
+
3
+
### Uploading Artifacts:
4
+
* Here's an example using [upload-artifact@v2](https://github.com/actions/upload-artifact) to push up a SeleniumBase-generated artifact.
5
+
```
6
+
- uses: actions/upload-artifact@v2
7
+
with:
8
+
name: Click to download the presentation
9
+
path: saved_presentations/my_presentation.html
10
+
```
11
+
12
+
### Slack Notifications - [rtCamp/action-slack-notify](https://github.com/rtCamp/action-slack-notify) can be used to send notifications to Slack.
13
+
14
+
**Usage:**
15
+
* Create a slack integration webhook if you don't have one already.
16
+
* Create a ``SLACK_WEBHOOK`` secret on your repository with the webhook token value.
17
+
* For this particular action, ``SLACK_CHANNEL`` is an optional environment variable that defaults to the webhook token channel if not specified.
18
+
* The following example shows how to put a link to your workflow as the ``SLACK_MESSAGE`` (Lets you see artifacts pushed up, such as from the SeleniumBase Presenter feature!):
0 commit comments