-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
CI-CD URL Check Change #880
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,18 +30,9 @@ jobs: | |
- name: Clone This Repo | ||
uses: actions/checkout@v3 | ||
- name: Link Verification | ||
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@v2 | ||
|
||
url-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was incorrectly pointed to the v2 branch. Pointing back to mainline as part of this PR. |
||
with: | ||
path: ./kernel | ||
|
||
- name: URL Checker | ||
run: | | ||
bash kernel/.github/actions/url_verifier.sh kernel | ||
exclude-urls: https://www.misra.org.uk/misra-c | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This link now goes to a "Prove you're a human" page - which causes the link verifier to fail. |
||
|
||
verify-manifest: | ||
runs-on: ubuntu-latest | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing the kernel's custom script to instead use the CI-CD action that was already added and been used.