We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02d7070 commit 6e42accCopy full SHA for 6e42acc
.github/workflows/sync.yml
@@ -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