Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check URLs every day #102

Merged
merged 1 commit into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions .github/workflows/check-codegen.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Check pull request

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
Expand All @@ -22,16 +22,6 @@ jobs:
git submodule update --recursive --remote
git diff --exit-code
check-urls:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Check all URLs
run: ./scripts/check_all_urls.sh

check-swagger:
runs-on: ubuntu-latest
needs: [check-submodules]
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/check-urls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check URLs

on:
# Run on each PR to main
pull_request:
branches:
- main
# And every day at 03:00 UTC
schedule:
- cron: '0 3 * * *'


jobs:
check-urls:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Check all URLs
run: ./scripts/check_all_urls.sh
Loading