|
1 | 1 | # The only workflow that calls the real API. Needs the BRIGHTDATA_API_TOKEN |
2 | | -# secret and spends about one credit per post. |
| 2 | +# secret and spends about one credit per profile. |
3 | 3 | # |
4 | 4 | # Four ways it runs: |
5 | | -# on every push to main: one post from nasa and the README's links, one |
6 | | -# credit and about three minutes, so a broken commit shows up at once. |
| 5 | +# on every push to main: one profile and the README's links, one |
| 6 | +# credit and about a minute, so a broken commit shows up at once. |
7 | 7 | # A newer push cancels a run still going for an older commit. |
8 | 8 | # by hand, from the Actions tab, to scrape whatever accounts you choose |
9 | | -# every day at 06:00 UTC except Monday: one post from nasa, the async |
| 9 | +# every day at 06:00 UTC except Monday: one profile, the async |
10 | 10 | # path, and the field table, about two credits |
11 | 11 | # every Monday at 06:00 UTC: the same, plus every code block in the README, |
12 | 12 | # about 35 credits and 30 minutes |
@@ -50,12 +50,12 @@ concurrency: |
50 | 50 |
|
51 | 51 | jobs: |
52 | 52 | scrape: |
53 | | - name: Fetch the posts and attach them to this run |
| 53 | + name: Fetch the profiles and attach them to this run |
54 | 54 | runs-on: ubuntu-latest |
55 | 55 | timeout-minutes: 30 # fetch, async path, table; the README blocks have their own jobs |
56 | 56 | env: |
57 | 57 | BRIGHTDATA_API_TOKEN: ${{ secrets.BRIGHTDATA_API_TOKEN }} |
58 | | - # On the daily schedule there are no inputs, so fall back to one cheap post. |
| 58 | + # On the daily schedule there are no inputs, so fall back to one cheap profile. |
59 | 59 | PROFILES: ${{ inputs.profiles || 'satyanadella' }} |
60 | 60 | # the async path and the field table run on every scheduled run and on request |
61 | 61 | CHECK: ${{ github.event_name == 'schedule' || inputs.validate }} |
|
0 commit comments