Skip to content

Commit

Permalink
Fix typo in the word scraper
Browse files Browse the repository at this point in the history
  • Loading branch information
mh-firouzjah committed Aug 20, 2024
1 parent f5b4e3a commit bff1c46
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Scrapper
name: scraper
on:
push:
schedule:
Expand All @@ -21,7 +21,7 @@ jobs:
run: pip install -r requirements.txt

- name: Running the Python script
run: python scrapper.py
run: python scraper.py
env:
SHIFTBOARD_USERNAME: ${{ secrets.SHIFTBOARD_USERNAME }}
SHIFTBOARD_PASSWORD: ${{ secrets.SHIFTBOARD_PASSWORD }}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Before running the script, make sure you have the following:
1. Clone the repository to your local machine:

```bash
git clone https://github.com/mh-firouzjah/shiftboard_scrapper.git>
git clone https://github.com/mh-firouzjah/shiftboard_scraper.git>
```

2. Install the required Python packages:
Expand All @@ -40,13 +40,13 @@ Before running the script, make sure you have the following:
- To capture a screenshot manually, run the following command:

```bash
python scrapper.py
python scraper.py
```

- To set up the script as a scheduled task using GitHub Actions, create a workflow file in the `.github/workflows` directory of your repository. Here's an example workflow file:
```yaml
name: Scrapper
name: scraper
on:
schedule:
Expand All @@ -70,7 +70,7 @@ jobs:
pip install -r requirements.txt
- name: Run screenshot script
run: python scrapper.py
run: python scraper.py
env:
SHIFTBOARD_USERNAME: ${{ secrets.SHIFTBOARD_USERNAME }}
SHIFTBOARD_PASSWORD: ${{ secrets.SHIFTBOARD_PASSWORD }}
Expand Down
File renamed without changes.

0 comments on commit bff1c46

Please sign in to comment.