File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed
Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11FROM 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
55COPY --from=ghcommit /ghcommit /usr/bin/ghcommit
66
Original file line number Diff line number Diff line change 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 {
You can’t perform that action at this time.
0 commit comments