Compare commits

...

18 commits
v1.2.2 ... main

Author SHA1 Message Date
716ce5ba25 Merge pull request 'chore(deps): update actions/checkout digest to 11bd719' (#9) from renovate/actions-checkout-digest into main
All checks were successful
Fetch upstream (CDI) / fetch-upstream (push) Successful in 18s
Fetch upstream / fetch-upstream (push) Successful in 18s
Reviewed-on: #9
2024-10-23 12:46:06 -05:00
33963fcd64 chore(deps): update actions/checkout digest to 11bd719 2024-10-23 16:02:17 +00:00
a0dbdd583e Merge pull request 'chore(deps): update actions/checkout digest to eef6144' (#8) from renovate/actions-checkout-digest into main
All checks were successful
Fetch upstream (CDI) / fetch-upstream (push) Successful in 1m57s
Fetch upstream / fetch-upstream (push) Successful in 16s
Reviewed-on: #8
2024-10-10 05:58:52 -05:00
d1fba9c9d8 chore(deps): update actions/checkout digest to eef6144 2024-10-07 18:02:51 +00:00
5af9737b2f Merge pull request 'chore(deps): update dependency kubevirt/containerized-data-importer to v1.60.3' (#7) from renovate/kubevirt-containerized-data-importer-1.x into main
All checks were successful
Fetch upstream (CDI) / fetch-upstream (push) Successful in 11s
Reviewed-on: #7
2024-09-13 21:04:24 -05:00
d92c936819 chore(deps): update dependency kubevirt/containerized-data-importer to v1.60.3 2024-09-11 17:02:54 +00:00
5409085941 Merge pull request 'chore(deps): update dependency kubevirt/kubevirt to v1.3.1' (#6) from renovate/kubevirt-kubevirt-1.x into main
All checks were successful
Fetch upstream / fetch-upstream (push) Successful in 33s
Reviewed-on: #6
2024-09-05 22:58:11 -05:00
514d11ab87 chore(deps): update dependency kubevirt/kubevirt to v1.3.1 2024-08-29 15:02:39 +00:00
55c25c68fd Merge pull request 'chore(deps): update dependency kubevirt/containerized-data-importer to v1.60.2' (#5) from renovate/kubevirt-containerized-data-importer-1.x into main
All checks were successful
Fetch upstream (CDI) / fetch-upstream (push) Successful in 10s
Reviewed-on: #5
2024-08-23 15:23:43 -05:00
48fcd67d04 chore(deps): update dependency kubevirt/containerized-data-importer to v1.60.2 2024-08-22 22:01:38 +00:00
a37781d090 Merge pull request 'chore(deps): update dependency kubevirt/containerized-data-importer to v1.60.1' (#4) from renovate/kubevirt-containerized-data-importer-1.x into main
All checks were successful
Fetch upstream (CDI) / fetch-upstream (push) Successful in 10s
Reviewed-on: #4
2024-08-19 09:11:23 -05:00
6955df2c72 chore(deps): update dependency kubevirt/containerized-data-importer to v1.60.1 2024-08-18 13:01:16 +00:00
cdc04949da Merge pull request 'chore(deps): update dependency kubevirt/kubevirt to v1.3.0' (#3) from renovate/kubevirt-kubevirt-1.x into main
All checks were successful
Fetch upstream / fetch-upstream (push) Successful in 10s
Reviewed-on: #3
2024-07-18 07:23:26 -05:00
df9d372406 chore(deps): update dependency kubevirt/kubevirt to v1.3.0 2024-07-17 21:02:42 +00:00
9c9f24faa7 Merge pull request 'chore(deps): pin actions/checkout action to 692973e' (#1) from renovate/pin-dependencies into main
All checks were successful
Fetch upstream (CDI) / fetch-upstream (push) Successful in 9s
Fetch upstream / fetch-upstream (push) Successful in 8s
Reviewed-on: #1
2024-07-03 00:02:09 -05:00
7b64752715 chore(deps): pin actions/checkout action to 692973e 2024-07-03 04:03:32 +00:00
5065dd9737
correct branch
All checks were successful
Fetch upstream (CDI) / fetch-upstream (push) Successful in 10s
2024-07-02 22:49:27 -05:00
58037e37c2
add cdi
Some checks failed
Fetch upstream (CDI) / fetch-upstream (push) Failing after 8s
2024-07-02 22:48:42 -05:00
2 changed files with 46 additions and 2 deletions

View file

@ -0,0 +1,44 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Fetch upstream (CDI)
on:
workflow_dispatch:
push:
branches:
- main
paths:
- .forgejo/workflows/fetch-upstream-cdi.yaml
env:
# renovate: datasource=github-releases depName=kubevirt/containerized-data-importer
KUBEVIRTCDI_VERSION: v1.60.3
jobs:
fetch-upstream:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Git setup
shell: bash
run: |
git config --global user.name 'Smeagol'
git config --global user.email 'smeagol@hsn.dev'
- name: Fetch files
shell: bash
run: |
git checkout -b cdi-${KUBEVIRTCDI_VERSION} main || git checkout cdi-${KUBEVIRTCDI_VERSION}
mkdir ./deploy
mv ./kustomization-cdi.tmpl.yaml ./deploy/kustomization.yaml
curl -vL -o ./deploy/1-cdi-operator.yaml https://github.com/kubevirt/containerized-data-importer/releases/download/${KUBEVIRTCDI_VERSION}/cdi-operator.yaml
curl -vL -o ./deploy/2-cdi-cr.yaml https://github.com/kubevirt/containerized-data-importer/releases/download/${KUBEVIRTCDI_VERSION}/cdi-cr.yaml
git add ./deploy || true
git commit -m "feat: cdi-${KUBEVIRTCDI_VERSION}" || true
git push origin cdi-${KUBEVIRTCDI_VERSION} || true

View file

@ -11,14 +11,14 @@ on:
env: env:
# renovate: datasource=github-releases depName=kubevirt/kubevirt # renovate: datasource=github-releases depName=kubevirt/kubevirt
KUBEVIRT_VERSION: v1.2.2 KUBEVIRT_VERSION: v1.3.1
jobs: jobs:
fetch-upstream: fetch-upstream:
runs-on: docker runs-on: docker
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with: with:
fetch-depth: 0 fetch-depth: 0