Skip to content

Commit 477c45e

Browse files
committed
fetch entire git history
It seems that we are currently always releasing stuff even if there are no changes. No clue why 'git rev-list' would return a positive number, but I hope with this change, we will only release if there are actual changes for a specific crate Signed-off-by: Sebastian Hoß <[email protected]>
1 parent 9198a54 commit 477c45e

File tree

404 files changed

+1616
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

404 files changed

+1616
-0
lines changed

.github/workflows/release-about_k8s_io.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
1214
steps:
1315
- id: checkout
1416
name: Checkout
1517
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1620
- id: commits
1721
name: Count Commits
1822
run: echo "count=$(git rev-list --count HEAD --since='last Thursday' -- custom-resources/about_k8s_io)" >> $GITHUB_OUTPUT

.github/workflows/release-acid_zalan_do.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
1214
steps:
1315
- id: checkout
1416
name: Checkout
1517
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1620
- id: commits
1721
name: Count Commits
1822
run: echo "count=$(git rev-list --count HEAD --since='last Tuesday' -- custom-resources/acid_zalan_do)" >> $GITHUB_OUTPUT

.github/workflows/release-acme_cert_manager_io.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
1214
steps:
1315
- id: checkout
1416
name: Checkout
1517
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1620
- id: commits
1721
name: Count Commits
1822
run: echo "count=$(git rev-list --count HEAD --since='last Monday' -- custom-resources/acme_cert_manager_io)" >> $GITHUB_OUTPUT

.github/workflows/release-acmpca_services_k8s_aws.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
1214
steps:
1315
- id: checkout
1416
name: Checkout
1517
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1620
- id: commits
1721
name: Count Commits
1822
run: echo "count=$(git rev-list --count HEAD --since='last Saturday' -- custom-resources/acmpca_services_k8s_aws)" >> $GITHUB_OUTPUT

.github/workflows/release-actions_github_com.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
1214
steps:
1315
- id: checkout
1416
name: Checkout
1517
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1620
- id: commits
1721
name: Count Commits
1822
run: echo "count=$(git rev-list --count HEAD --since='last Thursday' -- custom-resources/actions_github_com)" >> $GITHUB_OUTPUT

.github/workflows/release-actions_summerwind_dev.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
1214
steps:
1315
- id: checkout
1416
name: Checkout
1517
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1620
- id: commits
1721
name: Count Commits
1822
run: echo "count=$(git rev-list --count HEAD --since='last Friday' -- custom-resources/actions_summerwind_dev)" >> $GITHUB_OUTPUT

.github/workflows/release-addons_cluster_x_k8s_io.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
1214
steps:
1315
- id: checkout
1416
name: Checkout
1517
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1620
- id: commits
1721
name: Count Commits
1822
run: echo "count=$(git rev-list --count HEAD --since='last Tuesday' -- custom-resources/addons_cluster_x_k8s_io)" >> $GITHUB_OUTPUT

.github/workflows/release-agent_k8s_elastic_co.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
1214
steps:
1315
- id: checkout
1416
name: Checkout
1517
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1620
- id: commits
1721
name: Count Commits
1822
run: echo "count=$(git rev-list --count HEAD --since='last Wednesday' -- custom-resources/agent_k8s_elastic_co)" >> $GITHUB_OUTPUT

.github/workflows/release-akri_sh.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
1214
steps:
1315
- id: checkout
1416
name: Checkout
1517
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1620
- id: commits
1721
name: Count Commits
1822
run: echo "count=$(git rev-list --count HEAD --since='last Tuesday' -- custom-resources/akri_sh)" >> $GITHUB_OUTPUT

.github/workflows/release-amd_com.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ on:
99
jobs:
1010
release:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
1214
steps:
1315
- id: checkout
1416
name: Checkout
1517
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1620
- id: commits
1721
name: Count Commits
1822
run: echo "count=$(git rev-list --count HEAD --since='last Tuesday' -- custom-resources/amd_com)" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)