7 Commits

Author SHA1 Message Date
1357993978 Merge pull request 'chore(deps): update actions/checkout action to v6' (#2) from renovate/actions-checkout-6.x into master
Reviewed-on: #2
2026-02-15 21:31:04 +01:00
0b27479ce3 Merge pull request 'chore(deps): update actions/setup-go action to v6' (#3) from renovate/actions-setup-go-6.x into master
All checks were successful
Gitbump CI / test (push) Successful in 51s
Gitbump CI / build (push) Successful in 8s
Gitbump CI / notify-failure (push) Has been skipped
Reviewed-on: #3
2026-02-15 21:30:29 +01:00
1b8c6d789a chore(deps): update actions/setup-go action to v6 2026-02-15 20:28:55 +00:00
f575d0ea75 chore(deps): update actions/checkout action to v6 2026-02-15 20:28:52 +00:00
e29140f884 Merge pull request 'chore: Configure Renovate' (#1) from renovate/configure into master
All checks were successful
Gitbump CI / test (push) Successful in 11s
Gitbump CI / build (push) Successful in 19s
Gitbump CI / notify-failure (push) Has been skipped
Reviewed-on: #1
2026-02-15 17:33:42 +01:00
9b61354e6c Add renovate.json 2026-02-15 16:32:55 +00:00
d4a0203bd8 ci: setup just
Some checks failed
Gitbump CI / test (push) Successful in 9s
Gitbump CI / notify-failure (push) Has been skipped
Gitbump CI / build (push) Failing after 6s
2026-02-12 13:17:19 +01:00
2 changed files with 19 additions and 13 deletions

View File

@@ -8,35 +8,39 @@ jobs:
test: test:
runs-on: [ubuntu-latest, amd64] runs-on: [ubuntu-latest, amd64]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v6
with: with:
go-version: '1.26' go-version: '1.26'
- name: Install just
run: |
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash
- name: Test & Build - name: Test & Build
run: | run: |
just vet test /root/bin/just vet test
just build-linux-amd64 /root/bin/just build-linux-amd64
/bin/gitbump_linux_amd64 --version ./bin/gitbump_linux_amd64 --version
build: build:
runs-on: [ubuntu-latest, amd64] runs-on: [ubuntu-latest, amd64]
needs: test-build needs: test
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master'
permissions: permissions:
contents: write contents: write
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
with: with:
fetch-depth: 0 fetch-depth: 0
persist-credentials: true persist-credentials: true
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v6
with: with:
go-version: '1.26' go-version: '1.26'
@@ -44,17 +48,16 @@ jobs:
run: go run main.go run: go run main.go
notify-failure: notify-failure:
runs-on: go-executor runs-on: [ubuntu-latest, amd64]
needs: [test, build] needs: [test, build]
if: always() && contains(needs.*.result, 'failure') if: always() && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped'))
steps: steps:
- name: ntfy-failed-notifications - name: ntfy-failed-notifications
uses: niniyas/ntfy-action@master uses: niniyas/ntfy-action@master
with: with:
url: 'https://ntfy.zlymeda.dynu.net' url: ${{ secrets.NTFY_URL }}
topic: ${{ secrets.NTFY_TOPIC || 'errors' }} topic: ${{ secrets.NTFY_TOPIC }}
priority: 5 priority: 5
tags: flying_saucer,warning,🚨,🛠️,action,failed tags: flying_saucer,warning,🚨,🛠️,action,failed
details: Workflow has failed! details: Workflow has failed!
actions: 'default' actions: 'default'

3
renovate.json Normal file
View File

@@ -0,0 +1,3 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}