Skip to content

Commit f9e69f4

Browse files
authored
Merge branch 'master' into programs
2 parents 0d159fc + 607d2b4 commit f9e69f4

3 files changed

Lines changed: 54 additions & 1 deletion

File tree

.github/linters/mlc_config.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
{
3+
"ignorePatterns": [
4+
{
5+
"pattern": "^http://ignored-domain.com"
6+
}
7+
]
8+
}

.github/workflows/md_link.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#########################
2+
#########################
3+
### Link Check Action ###
4+
#########################
5+
#########################
6+
name: Check Markdown links
7+
8+
###########################
9+
# Start the job on all PR #
10+
###########################
11+
on:
12+
pull_request:
13+
branches: [ master ]
14+
15+
###############
16+
# Set the Job #
17+
###############
18+
jobs:
19+
# Name the Job
20+
markdown-link-check:
21+
# Set the agent to run on
22+
runs-on: ubuntu-latest
23+
24+
##################
25+
# Load all steps #
26+
##################
27+
steps:
28+
29+
##########################
30+
# Checkout the code base #
31+
##########################
32+
- uses: actions/checkout@master
33+
34+
###################################
35+
# Run Linkcheck against code base #
36+
###################################
37+
- uses: gaurav-nelson/github-action-markdown-link-check@v1
38+
with:
39+
use-quiet-mode: 'no'
40+
use-verbose-mode: 'yes'
41+
config-file: '.github/linters/mlc_config.json'
42+
max-depth: -1
43+
check-modified-files-only: 'yes'

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ All PR's are now being entertained, Please star this repo in order to get furthe
2626
| [Hyperledger Mentorship Program](https://wiki.hyperledger.org/display/INTERN/How+to+Apply) | Yes | [timeline](https://wiki.hyperledger.org/display/INTERN/How+to+Apply) |
2727
| [Snowplow](https://snowplowanalytics.com/company/careers/?gh_jid=1107068) | Yes | |
2828
| [Redox Summer Of Code](https://www.redox-os.org/rsoc/)| Yes | |
29-
| [Millennium Fellowship](https://www.millenniumfellows.org/)|No|[timeline](https://www.milleniumfellows.org/the-program)|
29+
| [Millennium Fellowship](https://www.millenniumfellows.org/)|No|[timeline](https://www.millenniumfellows.org/the-program)|
30+
| [John Hunter Matplotlib Summer Fellowship](https://www.numfocus.org/programs/john-hunter-technology-fellowship)| Yes | [timeline](https://numfocus.org/programs/john-hunter-technology-fellowship) |
3031
| [GNOME Internship Program](https://wiki.gnome.org/Internships)| Yes |[timeline](https://wiki.gnome.org/Internships#Timeline) |
3132
| [Igalia Coding Experience Program](https://www.igalia.com/about-us/coding-experience)| Yes |[timeline](https://www.igalia.com/about-us/coding-experience) |
3233
| [Google Summer of Earth Engine](https://sites.google.com/view/summerofearthengine/home) | Yes |[timeline](https://sites.google.com/view/summerofearthengine/timeline) |
@@ -65,6 +66,7 @@ All PR's are now being entertained, Please star this repo in order to get furthe
6566

6667
| Name | Awards | Timeline |
6768
|-----------------------------------------|----------------------------------- |--------------|
69+
| [JGEC Winter of Code](https://jwoc2k20.tech/) | Certificates & swag rewards | [timeline](https://jwoc2k20.tech/#timeline)
6870
| [OSS Summer of Innovation](https://oss2019.github.io/SoI.html) | Swag rewards| |
6971
| [NJACK Winter Of Code](https://njackwinterofcode.github.io/) | Swag rewards| [timeline](https://njackwinterofcode.github.io/)|
7072
| [Kharagpur Winter Of Code](https://kwoc.kossiitkgp.org/) | Swag rewards| [timeline](https://kwoc.kossiitkgp.org/#tline)|

0 commit comments

Comments
 (0)