Sync upstream #157
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: Sync upstream | |
# This runs every day on 1000 UTC | |
on: | |
schedule: | |
- cron: '0 10 * * *' | |
# Allows manual workflow run | |
workflow_dispatch: | |
permissions: write-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create upstream version tag | |
uses: DataDog/sync-upstream-release-tag@main | |
with: | |
github_actor: "${GITHUB_ACTOR}" | |
github_repository: "${GITHUB_REPOSITORY}" | |
github_token: ${{ secrets.WORKFLOW_TOKEN }} | |
upstream_repo: kata-containers/kata-containers | |
date_suffix: "%Y%V" | |
major_version: "3" |