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
A GitHub Action to detect web page changes. It uses [mborsetti/webchanges](https://github.com/mborsetti/webchanges) to find differences between web pages.
3
+
4
+
## Usage
5
+
6
+
The following example workflow step will create an issue in a GitHub repository if a web page has changed.
7
+
8
+
```yml
9
+
- name: "Detect web page changes"
10
+
id: webchanges
11
+
uses: swimmwatch/webchanges-action@v1.0.0
12
+
with:
13
+
jobs: |
14
+
name: Telegram Mini App documentation
15
+
url: https://core.telegram.org/bots/webapps
16
+
use_browser: false
17
+
filters:
18
+
- html2text
19
+
config: |
20
+
report:
21
+
tz: UTC
22
+
github_issue:
23
+
enabled: true
24
+
owner: '${{ github.repository_owner }}'
25
+
repo: '${{ github.event.repository.name }}'
26
+
token: '${{ secrets.GITHUB_TOKEN }}'
27
+
format_dt: '%Y-%m-%d'
28
+
title: 'Telegram Mini App documentation update {dt}'
29
+
assignees:
30
+
- 'swimmwatch'
31
+
format_content: |
32
+
```text
33
+
{content}
34
+
```
35
+
```
36
+
37
+
## Options
38
+
The following input variables options can/must be configured:
0 commit comments