Skip to content

Commit dff7eba

Browse files
authored
Merge pull request #51 from planetscale/renovate/more-updates
misc renovate updates
2 parents 6828004 + 38e8d59 commit dff7eba

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,25 @@ jobs:
2424
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2525
with:
2626
fetch-depth: 0
27+
fetch-tags: true
2728

28-
- name: fetch tags
29-
run: git fetch --force --tags
29+
# only generate a new release if certain files change:
30+
- uses: dorny/paths-filter@v2
31+
id: filter
32+
with:
33+
filters: |
34+
app:
35+
- 'action.yaml'
36+
- '**.sh'
37+
- 'Dockerfile'
3038
3139
- name: install autotag binary
40+
if: steps.filter.outputs.app == 'true'
3241
run: |
3342
curl -sL https://git.io/autotag-install | sudo sh -s -- -b /usr/local/bin
3443
3544
- name: increment tag and create release
45+
if: steps.filter.outputs.app == 'true'
3646
run: |
3747
set -eou pipefail
3848

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ghcr.io/planetscale/ghcommit:v0.1.24@sha256:0c61e7dbf31f9c499de923da8fc8ceb0990bb33c69e306809b3c37fd4282c347 AS ghcommit
22

3-
FROM pscale.dev/wolfi-prod/base:latest@sha256:8261568a0901a94c35c4ffbf1808d81194aac6fea3ab61896ee570b62bccef2d AS base
3+
FROM pscale.dev/wolfi-prod/base:latest AS base
44

55
COPY --from=ghcommit /ghcommit /usr/bin/ghcommit
66

renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"local>planetscale/renovate-config"
4+
"github>planetscale/renovate-config"
55
]
66
"packageRules": [
77
{

0 commit comments

Comments
 (0)