Skip to content
Open
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
23 changes: 23 additions & 0 deletions .github/workflows/auto-update.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2024 Defense Unicorns
# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial

name: Auto Update

on:
schedule:
- cron: 0 14 * * * # daily at 8 AM Central (CST = UTC−6)

# Permissions for the GITHUB_TOKEN used by the workflow.
permissions:
contents: write # Allows writing content to the repository.
packages: read # Allows reading the content of the repository's packages.

# Abort prior jobs in the same workflow / PR
concurrency:
group: auto-update-${{ github.ref }}
cancel-in-progress: true

jobs:
auto-update:
uses: defenseunicorns/uds-common/.github/workflows/callable-auto-update.yaml@434bbc29e91b597672ba64d2e7569eac15dc8422 # v1.21.1
secrets: inherit # Inherits all secrets from the parent workflow.
Loading