-
Notifications
You must be signed in to change notification settings - Fork 1.3k
CI-CD URL Check Change #880
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
Changes from all 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 |
---|---|---|
|
@@ -12,6 +12,8 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- name: Check Formatting of FreeRTOS-Kernel Files | ||
uses: FreeRTOS/CI-CD-Github-Actions/formatting@main | ||
with: | ||
exclude-dirs: portable | ||
|
||
spell-check: | ||
runs-on: ubuntu-latest | ||
|
@@ -30,18 +32,7 @@ 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 | ||
with: | ||
path: ./kernel | ||
|
||
- name: URL Checker | ||
run: | | ||
bash kernel/.github/actions/url_verifier.sh kernel | ||
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. |
||
|
||
verify-manifest: | ||
runs-on: ubuntu-latest | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,7 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Apply Formatting Fix | ||
id: check-formatting | ||
uses: FreeRTOS/CI-CD-Github-Actions/formatting-bot@main | ||
id: check-formatting | ||
with: | ||
exclude-dirs: portable | ||
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. We are not going to format the portable directory moving forward. Add this change to this PR to enable the PRs mentioned in the description to pass. |
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.