Skip to content

check-for-changes #1553

check-for-changes

check-for-changes #1553

name: Auto Detect Changes
env:
USERNAMES: ${{ secrets.USERNAMES }}
PASSWORDS: ${{ secrets.PASSWORDS }}
SENDING_EMAILS: ${{ secrets.SENDING_EMAILS }}
EMAIL_USERNAME: ${{ secrets.EMAIL_USERNAME }}
EMAIL_PASSWORD: ${{ secrets.EMAIL_PASSWORD }}
LOGINS: ${{ vars.LOGINS }}
SIGN_IN_URL: ${{ vars.SIGN_IN_URL }}
WISH_LIST_URL: ${{ vars.WISH_LIST_URL }}
WISHLIST_RECHECK_MINUTES: ${{ vars.WISHLIST_RECHECK_MINUTES }}
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Triggers the workflow through a webhook event
repository_dispatch:
types: [check-for-changes]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
check-for-changes:
strategy:
fail-fast: false
matrix:
login: ${{ fromJson(vars.LOGINS) }}
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Setup project
uses: ./.github/actions/setup-project
with:
DECRYPTION_SECRET: ${{ secrets.DECRYPTION_SECRET }}
# Runs Puppeteer
- name: Run Puppeteer
run: export LOGIN="${{ matrix.login }}" && node check-for-changes.mjs