diff --git a/.github/workflows/scripts.yml b/.github/workflows/scripts.yml new file mode 100644 index 0000000..cfb689c --- /dev/null +++ b/.github/workflows/scripts.yml @@ -0,0 +1,31 @@ +name: Run validation scripts + +on: + schedule: + # Every day at 1:00 (AM) UTC + - cron: '*/5 * * * *' + +jobs: + run-validation-scripts: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v2 + + - name: Run validation scripts + run: | + sudo apt install curl git html-xml-utils wget -y + "${GITHUB_WORKSPACE}/scripts/01-parlamento.sh" + + - name: Commit file(s) + run: | + git config --local user.email "<>" + git config --local user.name "GitHub Actions" + git add ./README.md + git commit -m "Update de $(date +"%Y-%m-%d")" + + - name: Push changes # push the output folder to your repo + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + force: true diff --git a/README.md b/README.md index d36455e..c2023c7 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Esta tabela mostra casos de incumprimento do regulamento: | Sítio Web | Incumprimento | Exemplo | Última avaliação | Pedido de Resolução | |---|---|---|---|---| -| www.parlamento.pt | Vídeos disponibilizados em WMV | [vídeo de audição](http://www.parlamento.pt/ActividadeParlamentar/Paginas/DetalheAudiencia.aspx?BID=99371) | 2021/10/24 | 2015/03/25 | +| www.parlamento.pt | Vídeos disponibilizados em WMV | [vídeo de audição](http://www.parlamento.pt/ActividadeParlamentar/Paginas/DetalheAudiencia.aspx?BID=99371) | 2021/10/33 | 2015/03/25 | | www.dgae.min-economia.pt | Microsoft Office | [página com formulários OOXML](http://www.dgae.gov.pt/documentacao-/formularios.aspx) | 2021/10/24 | 2015/03/25 | | http://www.iefp.pt | Acessibilidade | [site não cumpre WCAG 2.0 AA](http://www.iefp.pt) | 2021/10/24 | 2016/01/05 | | www.portugal.gov.pt | Acessibilidade | [site não cumpre WCAG 2.0 A](http://www.portugal.gov.pt) | 2021/10/24 | 2019/08/13 |