Update TimeProvider.cs #219
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
name: 'Check Learning Path Links' | |
on: | |
pull_request: | |
branches: ['main'] | |
permissions: | |
pull-requests: read | |
jobs: | |
check-learning-path-links: | |
if: contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.pull_request.author_association) | |
name: 'Check Learning Path Links' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout merge | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac | |
with: | |
persist-credentials: false | |
path: merge | |
- name: Checkout head | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac | |
with: | |
persist-credentials: false | |
ref: main | |
path: head | |
- name: Get base commit for the PR | |
working-directory: ./merge | |
run: | | |
git fetch origin "$GITHUB_BASE_REF" | |
base_sha=$(git rev-parse "origin/$GITHUB_BASE_REF") | |
echo "base_sha=$base_sha" >> $GITHUB_ENV | |
echo "Merging ${GITHUB_SHA} into ${GITHUB_BASE_REF}" | |
- name: Get changed files | |
working-directory: ./merge | |
run: | | |
changed_source_files=$(git diff-tree --no-commit-id --name-only -r "$base_sha" "$GITHUB_SHA" | { grep "**.cs$" || test $? = 1; }) | |
echo "Files to validate: '${changed_source_files}'" | |
echo "updated_files=$(echo ${changed_source_files})" >> $GITHUB_ENV | |
- name: Check Learning Path Links | |
id: check-links | |
uses: kkeirstead/LearningPathFileChecks@main | |
with: | |
repoURLToSearch: 'https://github.com/dotnet/dotnet-monitor' | |
learningPathsDirectory: 'documentation/learningPath' | |
changedFilePaths: ${{ env.updated_files }} | |
sourceDirectoryName: 'src' | |
- name: Generate artifacts (Comment) | |
working-directory: ./merge | |
run: | | |
mkdir -p ./learning-path-review | |
echo -n "${{ steps.check-links.outputs.modifiedFiles }}" > ./learning-path-review/modifiedFiles | |
echo -n "${{ steps.check-links.outputs.manuallyReview }}" > ./learning-path-review/manuallyReview | |
echo -n "${{ steps.check-links.outputs.suggestions }}" > ./learning-path-review/suggestions | |
- name: Upload artifacts (Comment) | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 | |
with: | |
name: learning-path-review | |
path: merge/learning-path-review/ |