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

CI Updates: Add dependabot.yml and limit link checks to intel/perfmon #102

Merged
merged 2 commits into from
Sep 5, 2023
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
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Dependabot version updates for packages used by perfmon tooling.

version: 2
updates:
# Enable version updates for Python packages.
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 1

# Enable version updates from GitHub Actions.
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 1
9 changes: 3 additions & 6 deletions .github/workflows/check-markdown-links.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
name: Check Markdown links

on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
# Tuesdays at 9AM PST. GitHub Actions run in UTC.
- cron: '0 16 * * 2'

jobs:
markdown-link-check:
runs-on: ubuntu-latest
# Only run link checks in the main repo and not forks. The intent
# is a low volume reminder to update stale links.
if: github.repository == 'intel/perfmon'
steps:
- uses: actions/checkout@v3
- uses: gaurav-nelson/github-action-markdown-link-check@v1
Expand Down