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

workflows: Run urls-check in GitHub workflows #14795

Merged
merged 2 commits into from
Oct 26, 2020
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
2 changes: 1 addition & 1 deletion .github/workflows/npm-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ jobs:

- name: Run npm-update bot
run: |
make bots
tools/make-bots
martinpitt marked this conversation as resolved.
Show resolved Hide resolved
bots/npm-update
2 changes: 1 addition & 1 deletion .github/workflows/po-refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ jobs:

- name: Run po-refresh bot
run: |
make bots
tools/make-bots
bots/po-refresh
21 changes: 21 additions & 0 deletions .github/workflows/urls-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: urls-check
on:
schedule:
- cron: '0 4 * * *'
# can be run manually on https://github.com/cockpit-project/cockpit/actions
workflow_dispatch:
jobs:
urls-check:
runs-on: ubuntu-latest
steps:
- name: Set up configuration and secrets
run: |
echo '${{ secrets.GITHUB_TOKEN }}' > ~/.config/github-token

- name: Clone repository
uses: actions/checkout@v2

- name: Run urls-check action
run: |
tools/make-bots
tools/urls-check
26 changes: 0 additions & 26 deletions .tasks

This file was deleted.