Skip to content

Update whitelist for awesome_bot link checker #29

Update whitelist for awesome_bot link checker

Update whitelist for awesome_bot link checker #29

Workflow file for this run

name: Continuous Integration
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
jobs:
awesome_bot:
name: Check for issues via awesome_bot
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install gem
run: gem install awesome_bot
- name: Check links
run: awesome_bot README.md --skip-save-results --white-list ebu.io/opensource,github.com/ebu/dash.js,github.com/ebu/cpa-auth-provider,github.com/sony/nmos-cpp,netflixtechblog.com/,projects.blender.org/blender/blender,www.kamailio.org/,www.videolan.org/projects/dvblast.html
# GitHub Action to automate the identification of common misspellings in text files.
# https://github.com/codespell-project/actions-codespell
# https://github.com/codespell-project/codespell
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
check_hidden: true
skip: "./.git"