Skip to content

Commit 6e42acc

Browse files
[local] Add sync workflow
1 parent 02d7070 commit 6e42acc

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/sync.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Sync upstream
2+
# This runs every day on 1000 UTC
3+
on:
4+
schedule:
5+
- cron: '0 10 * * *'
6+
# Allows manual workflow run
7+
workflow_dispatch:
8+
9+
permissions: write-all
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Create upstream version tag
16+
uses: DataDog/[email protected]
17+
with:
18+
github_actor: "${GITHUB_ACTOR}"
19+
github_repository: "${GITHUB_REPOSITORY}"
20+
github_token: ${{ secrets.GITHUB_TOKEN }}
21+
upstream_repo: kubernetes-csi/external-snapshotter

0 commit comments

Comments
 (0)