diff --git a/.github/workflows/README.md b/.github/workflows/README.md index 48fe2572..a04b68a8 100644 --- a/.github/workflows/README.md +++ b/.github/workflows/README.md @@ -30,10 +30,6 @@ This pipeline requires a personal access token or organizational one with the ke Run Cypress tests with Axe to check accessibility of the site with axe by interacting with the menu, search, and with different screen sizes. -## a11ywatch.yml - -Run a11ywatch GitHub action to check accessibility of the site. - ## accessibility-alt-text-bot.yml This action reminds users to add a meaningful alternative text to their images. @@ -42,6 +38,10 @@ This action reminds users to add a meaningful alternative text to their images. This action checks content links for issues using https://github.com/gjtorikian/html-proofer. +## auto-update.yml + +Updating branch that is configured to auto-merge. + # References * https://github.com/pa11y/pa11y diff --git a/.github/workflows/a11ywatch.yml b/.github/workflows/a11ywatch.yml deleted file mode 100644 index 61c0eae0..00000000 --- a/.github/workflows/a11ywatch.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: a11ywatch - -on: [pull_request] - -jobs: - build: - name: Building site and running a11ywatch - runs-on: ubuntu-latest - - steps: - - name: Checkout source. - uses: actions/checkout@v4 - - - name: Install jekyll site dependencies. - uses: ruby/setup-ruby@v1 - with: - ruby-version: 3.3 - bundler-cache: true - - - name: Install npm dependencies. - run: npm ci - - - name: Start up jekyll server. - run: bundle exec jekyll serve --detach -c _config.yml,_config_local.yml - - - uses: a11ywatch/github-action@v2.1.10 - with: - WEBSITE_URL: http://localhost:4000 - SITE_WIDE: true - SITEMAP: true - LIST: true diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml new file mode 100644 index 00000000..ca8862f6 --- /dev/null +++ b/.github/workflows/auto-update.yml @@ -0,0 +1,14 @@ +name: Updating branch that is configured to auto-merge +on: + push: + branches: + - master + +jobs: + Auto: + name: Auto-update + runs-on: ubuntu-latest + steps: + - uses: tibdex/auto-update@v2 + with: + github_token: ${{ secrets.GH_TOKEN }}