Algolia Recrawl #5594
This file contains hidden or 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 Recrawl | |
| on: | |
| push: | |
| branches: [ master ] | |
| schedule: | |
| # Run on weekdays at 0900 | |
| - cron: "0 9 * * 1-5" | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| algolia_recrawl: | |
| name: Algolia Recrawl | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Algolia crawler creation and crawl | |
| uses: algolia/algoliasearch-crawler-github-actions@3ae4def15d82c60aa02b0e528b50167593cbaaf6 # v1.1.13 | |
| id: algolia_crawler | |
| 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://noir-lang.org/' | |
| crawler-name: noir-lang | |
| override-config: false | |
| - name: Send an alert in slack | |
| # Send notifications on scheduled runs if there's a failure. | |
| if: ${{ failure() && github.event_name == 'schedule' }} | |
| uses: slackapi/slack-github-action@dcb1066f776dd043e64d0e8ba94ca15cc7e1875d # v4.0.0 | |
| with: | |
| webhook: ${{ secrets.ALGOLIA_FAILURE_ALERT_URL }} | |
| webhook-type: webhook-trigger | |
| payload: | | |
| workflow-url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} |