Skip to content
Open
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: 3 additions & 1 deletion .github/workflows/check-links-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -46,4 +48,4 @@ jobs:
title: Broken Links Report - External
content-filepath: ./broken_links.md
repository: ${{ env.REPORT_REPOSITORY }}
labels: ${{ env.REPORT_LABEL }}
labels: ${{ env.REPORT_LABEL }}
4 changes: 3 additions & 1 deletion .github/workflows/check-links-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -46,4 +48,4 @@ jobs:
title: Broken Links Report - Local
content-filepath: ./broken_links.md
repository: ${{ env.REPORT_REPOSITORY }}
labels: ${{ env.REPORT_LABEL }}
labels: ${{ env.REPORT_LABEL }}
2 changes: 2 additions & 0 deletions .github/workflows/grammar-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@master
with:
persist-credentials: false

- name: Vale
uses: errata-ai/vale-action@master
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/repo-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false

- uses: repo-sync/github-sync@v2
name: Sync repo to branch
Expand Down
Loading