test with v3 checkout] #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Algolia Crawler | |
on: | |
# Uncomment push to current branch trigger | |
# if running on each merge to current | |
push: | |
branches: [ automate-crawler ] | |
pull_request: | |
types: | |
# - closed | |
jobs: | |
algolia_recrawl: | |
# Comment out this if check if running on every merge to current branch | |
#if: ${{ contains(github.event.pull_request.labels.*.name, 'trigger-crawl') && github.event.pull_request.merged == false }} | |
name: Trigger Algolia Crawl | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout repo | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
# Wait for deploy URL to be available from Vercel | |
- name: Get deployment URL | |
id: deployment | |
uses: dorshinar/get-deployment-url@master | |
timeout-minutes: 15 | |
with: | |
token: ${{ github.token }} | |
# Check for deploy URL every 20 seconds | |
retryInterval: '20000' | |
# Once deploy URL is found, trigger Algolia crawl | |
- name: Run Algolia Crawler | |
uses: algolia/algoliasearch-crawler-github-actions@v1 | |
id: crawler_push | |
with: | |
crawler-user-id: ${{ secrets.CRAWLER_USER_ID }} | |
crawler-api-key: ${{ secrets.CRAWLER_API_KEY }} | |
algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }} | |
algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }} | |
site-url: 'https://docs.getdbt.com' | |
crawler-name: ${{ secrets.CRAWLER_NAME }} |