Skip to content

deps(patch): update module github.com/go-chi/chi/v5 to v5.0.10 #91

deps(patch): update module github.com/go-chi/chi/v5 to v5.0.10

deps(patch): update module github.com/go-chi/chi/v5 to v5.0.10 #91

Workflow file for this run

---
name: changes
"on":
push:
branches:
- master
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout source
id: source
uses: actions/checkout@v3
with:
token: ${{ secrets.BOT_ACCESS_TOKEN }}
- name: Setup golang
id: golang
uses: actions/setup-go@v4
with:
go-version: ^1.19.0
- name: Run changelog
id: changelog
run: make changelog
- name: Commit changes
id: commit
uses: EndBug/add-and-commit@v9
with:
author_name: GitHub Actions
author_email: [email protected]
add: CHANGELOG.md
message: "docs: automated changelog update"
push: true
commit: --signoff
envvars:
runs-on: ubuntu-latest
steps:
- name: Checkout source
id: source
uses: actions/checkout@v3
with:
token: ${{ secrets.BOT_ACCESS_TOKEN }}
- name: Setup golang
id: golang
uses: actions/setup-go@v4
with:
go-version: ^1.19.0
- name: Generate envvars
id: envvars
run: make envvars
- name: Commit changes
id: commit
uses: EndBug/add-and-commit@v9
with:
author_name: GitHub Actions
author_email: [email protected]
add: docs/partials/envvars.md
message: "docs: automated envvars update"
push: true
commit: --signoff
metrics:
runs-on: ubuntu-latest
steps:
- name: Checkout source
id: source
uses: actions/checkout@v3
with:
token: ${{ secrets.BOT_ACCESS_TOKEN }}
- name: Setup golang
id: golang
uses: actions/setup-go@v4
with:
go-version: ^1.19.0
- name: Generate metrics
id: metrics
run: make metrics
- name: Commit changes
id: commit
uses: EndBug/add-and-commit@v9
with:
author_name: GitHub Actions
author_email: [email protected]
add: docs/partials/metrics.md
message: "docs: automated metrics update"
push: true
commit: --signoff
...