Skip to content
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

Fix little bug in periodic URL checker #723

Merged
merged 3 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@ group:
dest: .github/ISSUE_TEMPLATE/course-problem-report.md
- source: .github/ISSUE_TEMPLATE/course-content-add.md
dest: .github/ISSUE_TEMPLATE/course-content-add.md
- source: .github/ISSUE_TEMPLATE/url-error.md
dest: .github/ISSUE_TEMPLATE/url-error.md
- source: style-sets
dest: style-sets
- source: assets/box_images/
dest: assets/box_images/
- source: resources/exclude_files.txt
dest: resources/exclude_files.txt
# Repositories to receive changes
repos: |
jhudsl/Documentation_and_Usability
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/check-url.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,8 @@ jobs:
env:
GH_PAT: ${{ secrets.GH_PAT }}
run: |
echo "$GH_PAT"
echo "$GITHUB_REPOSITORY"
curl -o find_issue.R https://raw.githubusercontent.com/jhudsl/ottr-reports/main/scripts/find-issue.R
curl -o find_issue.R https://raw.githubusercontent.com/jhudsl/ottr-reports/main/scripts/find_issue.R
issue_exists=$(Rscript --vanilla find_issue.R --repo $GITHUB_REPOSITORY --git_pat $GH_PAT)
echo URL issue exists: $issue_exists
echo "issue_existence=$issue_exists" >> $GITHUB_OUTPUT
Expand Down
4 changes: 4 additions & 0 deletions resources/exclude_files.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
About.Rmd
docs/*
style-sets/*
manuscript/*
Loading