CI - Single Dependabot PR #122
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: CI - Single Dependabot PR | |
on: | |
schedule: | |
# At 8:30 every Wednesday (6:30 UTC) | |
# Dependabot runs once a week (every Monday) (pip) | |
# and every day (GH Actions) at 7:00 (5:00 UTC) | |
- cron: "30 6 * * 3" | |
workflow_dispatch: | |
jobs: | |
create-collected-pr: | |
name: External | |
uses: SINTEF/ci-cd/.github/workflows/[email protected] | |
if: github.repository_owner == 'CasperWA' | |
with: | |
# General | |
git_username: CasperWA | |
git_email: "[email protected]" | |
permanent_dependencies_branch: ci/dependabot-updates | |
default_repo_branch: develop | |
# Generated PR | |
pr_labels: github_actions,dependencies | |
# pre-commit | |
update_pre-commit: true | |
python_version: "3.9" | |
install_extras: "[dev]" | |
secrets: | |
PAT: ${{ secrets.RELEASE_PAT }} |