-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add configuration files (`.yml`) for GitHub Actions. Signed-off-by: Razvan Deaconescu <[email protected]>
- Loading branch information
Showing
4 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
topic/functions: | ||
- chapters/functions/**/* | ||
|
||
topic/multivar-power: | ||
- chapters/multivariate-to-power/**/* | ||
|
||
topic/numbers-indices: | ||
- chapters/numbers-to-indices/**/* | ||
|
||
topic/vectors-matrix: | ||
- chapters/vectors-matrix-ops/**/* | ||
|
||
area/reading: | ||
- '**/reading/*' | ||
- '**/reading/**/*' | ||
|
||
area/media: | ||
- '**/media/*' | ||
- '**/media/**/*' | ||
|
||
area/slides: | ||
- '**/slides/*' | ||
- '**/slides/**/*' | ||
|
||
area/guides: | ||
- '**/guides/*' | ||
- '**/guides/**/*' | ||
|
||
area/drills: | ||
- '**/drills/*' | ||
- '**/drills/**/*' | ||
|
||
area/projects: | ||
- '**/projects/*' | ||
- '**/projects/**/*' | ||
|
||
area/infra: | ||
- 'scripts/**/*' | ||
- '.github/**/*' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Prerequisite Checklist | ||
|
||
<!-- | ||
Please mark items appropriately: | ||
--> | ||
|
||
- [ ] Read the [contribution guidelines](https://github.com/open-education-hub/ccas-internal/blob/main/CONTRIBUTING.md#pull-requests) regarding submitting new changes to the project; | ||
- [ ] Tested your changes against relevant architectures and platforms; | ||
- [ ] Updated relevant documentation (if needed). | ||
|
||
## Description of changes | ||
|
||
<!-- | ||
Please provide a detailed description of the changes made in this new PR. | ||
--> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Linter Actions Workflow | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
checkpatch: | ||
name: Checkpatch | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkpatch | ||
uses: open-education-hub/actions/checkpatch@main | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
super-linter: | ||
name: Super Linter | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Super Linter | ||
uses: open-education-hub/actions/super-linter@main | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
spellcheck: | ||
name: Spellcheck | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Spellcheck | ||
uses: open-education-hub/actions/spellcheck@main | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Labeler Actions Workflow | ||
|
||
on: | ||
schedule: | ||
- cron: "0 */12 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
labeler: | ||
name: Labeler | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Labeler | ||
uses: open-education-hub/actions/cron-labeler@main | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |