redirect cashshuffle com to org domain #265
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: Links | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
# Run everyday Sunday at 4:00 UTC | |
- cron: "0 4 * * 0" | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Link Checker | |
uses: lycheeverse/[email protected] | |
with: | |
# Use different output file path | |
output: /tmp/out.md | |
env: | |
GITHUB_TOKEN: ${{secrets.LINKS}} | |
- name: Create Issue From File | |
uses: peter-evans/create-issue-from-file@v4 | |
with: | |
title: Link Checker Report | |
content-filepath: /tmp/out.md | |
labels: report, automated issue |