Sync upstream #738
This file contains hidden or 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: kubernetes-csi/external-snapshotter |