Validate URLs #75
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: Validate URLs | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 13 * * 1' | |
jobs: | |
validate_urls: | |
name: Validate URLs | |
runs-on: ubuntu-latest | |
environment: 'production' | |
permissions: | |
contents: read | |
issues: write | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
architecture: x64 | |
- name: Upgrade pip | |
run: | | |
pip install pip poetry | |
pip --version | |
poetry --version | |
- name: Poetry install | |
run: | | |
poetry install | |
- name: Get invalid URLs | |
id: urls | |
run: | | |
output=$(poetry run python utility_scripts/plugin_definitions/check_links.py) | |
echo "INVALID_URL<<EOF" >> $GITHUB_ENV | |
echo "$output" >> $GITHUB_ENV | |
echo "EOF" >> $GITHUB_ENV | |
- uses: JasonEtco/create-an-issue@v2 | |
if: env.INVALID_URL != '' | |
env: | |
GITHUB_TOKEN: ${{ secrets.MELTYBOT_GITHUB_AUTH_TOKEN }} | |
INVALID_URLS: ${{ env.INVALID_URL }} | |
with: | |
filename: .github/ISSUE_TEMPLATE/invalid_urls.md | |
update_existing: true |